<title>My first HTML document</title>
這個時候用瀏覽器打開文件其實只是一片空白。
2.添加頭部和文件
HTML中有6個級別的頭字體。H1是最重要的,H2次之,一直到H6
每個片斷都應該有<p>的標籤.
<p>This is the second paragraph.</p>
3.增長一些強調
This is a really <em>interesting</em> topic!
可是在這我也不加上<p>的標籤,也仍是會展現,因此我猜應該是默認的吧?
4.增長圖片到你的頁面中
<p><img src="text.png" width="200" height="150" alt="My friend Peter"></p>
圖片能夠指定長寬的像素大小, 也能夠增長替換表達,當這個圖像不存在的時候(alt)。
longdesc 幾乎全部的網頁都不支持這個標籤了。
5.增長到其餘頁面的連接
This is a link to <a href="peter.html">Peter's page</a>
連接到其餘的網頁:
This is a link to <a href="http://www.w3.org/">W3C</a>.
你也能夠將一個圖片連接到一個地址:
<a href="peter.html"><img src="text.png" alt="My friend Peter"></a>
6.三種列表
Html支持三種列表
(2)有序列表 ol
<ol>
</ol>
<html> <head> <title>My first HTML document</title> </head> <body> <h1>An important heading</h1> <h2>A slightly less important heading</h2> <p>This is the first paragraph.</p> This is the second paragraph. This is a really <em>interesting</em> topic! <p><img src="text.png" width="200" height="150" alt="My friend Peter"></p> This is a link to <a href="peter.html">Peter's page</a> This is a link to <a href="http://www.w3.org/">W3C</a>. <a href="peter.html"><img src="text.png" alt="My friend Peter"></a> <ul> <li>the first list item</li> <li>the second list item</li> <li>the third list item</li> </ul> <ol> <li>the first list item</li> <li>the second list item</li> <li>the third list item</li> </ol> <dl> <dt>the first term</dt> <dd>its definition</dd> <dt>the second term</dt> <dd>its definition</dd> <dt>the third term</dt> <dd>its definition</dd> </dl> </body> </html>