Overview, Environment, HTML Markup

(授業の概要、演習環境、HTML)

Projects in Information Technology II

(情報総合プログラミング実習 II)

1st lecture, April 8, 2019

http://www.sw.it.aoyama.ac.jp/2019/Projects2/lecture1.html

Martin J. Dürst

duerst@it.aoyama.ac.jp

O 棟 529 号室

テュールスト マーティン ヤコブ

AGU

© 2005-19 Martin J. Dürst 青山学院大学

授業前の準備

 

Today's Schedule

 

Self-Introduction

 

Presentation of Teaching Staff

Assistant Professors (助教)

Teaching Assistants (TA)

 

授業の位置付け

 

授業の内容

 

約束事

 

独力・独走の約束

 

不正行為

 

成績評価方法

授業中の演習課題とミニテスト、プロジェクト、期末試験で総合的な評価

出席が前提、欠席の場合、事前の許可又は診断書が必要 (医療機関のレシートだけではダメ!)

 

成功するには

 

Handouts

 

XHTML

<!DOCTYPE html>
<html lang='en-US'>
  ...
</html>

 

HTML Structure

 

Elements (要素)

 

Attributes (属性)

 

Main Elements in body

 

What to Remember for each Element

 

Form h1 to h6

(heading 1 ~ heading 6)

Heading 1 (h1)

Heading 2 (h2)

Heading 3 (h3)

Heading 4 (h4)

Important:: heading are headings. Never misuse them to change font size!

 

Lists

HTML has three kinds of lists:

 

Example of Unordered List

<ul>
  <li>Unordered List</li>
  <li>Ordered List</li>
  <li>Definition List</li>
</ul>

 

Example of Ordered List

<ol>
  <li>Unordered List</li>
  <li>Ordered List</li>
  <li>Definition List</li>
</ol>
  1. Unordered List
  2. Ordered List
  3. Definition List

 

Example of Definition List

<dl>
  <dt>head</dt>
    <dd>Information ABOUT the document</dd>
  <dt>body</dt>
    <dd>The visible content of the document</dd>
</dl>
head
Information ABOUT the document
body
The visible content of the document

 

Generic Markup

What to do when a desired element is not available in XHTML

 

Visual vs. Structural Markup

 

Editors and Browsers

 

Moodle

https://moo.sw.it.aoyama.ac.jp (same as Discrete Mathematics I and Computer Practice I)

Enrollment key: [secret]

If you forgot your password, use "Forgotten your username or password?" on the login page.
(caution: only enter either the username or the email address, not both)

 

How to Ask Questions

 

Minitest

(Starting next week)

 

Exercise: Mark up the Document Introduction to CSS

 

Homework