HTML 標題(Heading)是經過 <h1> - <h6> 等標籤進行定義的。學習
<h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3>
HTML 段落spa
HTML 段落是經過 <p> 標籤進行定義的。code
<p>This is a paragraph.</p> <p>This is another paragraph.</p>
HTML 連接是經過 <a> 標籤進行定義的。blog
<a href="http://www.w3school.com.cn">This is a link</a>
註釋:在 href 屬性中指定連接的地址。教程
(您將在本教程稍後的章節中學習更多有關屬性的知識)。class
HTML 圖像是經過 <img> 標籤進行定義的。im
<img src="w3school.jpg" width="104" height="142" />
註釋:圖像的名稱和尺寸是以屬性的形式提供的。img