2011年4月25日 星期一
2011年4月11日 星期一
LAB23
HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
看起來會依序縮小字體
HTML Paragraphs
HTML paragraphs are defined with the <p> tag
直接給入內容之文字
HTML Links
HTML links are defined with the <a> tag.
可創造一個連結
HTML Images
HTML images are defined with the <img> tag.
可載入一個圖片
HTML Unordered Lists
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items are marked with bullets (typically small black circles)
可在每個標題前面創造一個點作為標示
HTML Ordered Lists
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items are marked with numbers.
在每個標題前面用數字1~X做標示
HTML Definition Lists
A definition list is a list of items, with a description of each item.
The <dl> tag defines a definition list.
The <dl> tag is used in conjunction with <dt> (defines the item in the list) and <dd> (describes the item in the list):
在每個標題下在創造出一個子資料
LAB22
有粗體字且字體有大小分別
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
僅是將body內的文字寫入而已
<html>
<body>
The content of the body element is displayed in your browser.
</body>
</html>
訂閱:
文章 (Atom)