HTML元素說明
HTML Elements
HTML元素是在開始標籤和結束標籤之間的任何東西
Start tag * | Element content | End tag * |
---|---|---|
<p> | This is a paragraph | </p> |
<a href="default.htm"> | This is a link | </a> |
<br> |
大多數的HTML元素可以被嵌套(可以包含其他html元素)
HTML文件包含被嵌套的HTML元素
HTML Document Example
<!DOCTYPE html>
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
HTML Example Explained
The <p> element:
<p>This is my first paragraph.</p>
<p>定義HTML文件中的一個段落
The <body> element:
<body>
<p>This is my first paragraph.</p>
</body>
<p>This is my first paragraph.</p>
</body>
<body>元素定義HTML文件的身體
The <html> element:
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
<html>元素定義整個html文件
注意:
- 不要忘記結束標籤
- 沒有內容的元素稱為空元素,<br>是一個沒有結束標籤的空元素,用來換行
- 盡量使用小寫
留言
張貼留言