HTML 超文本标记语言 describes a web page with tags 标签. A tag is a word in angle brackets, like <p>. Most come in pairs — an opening tag <p> and a closing tag </p> wrap some content. A tag plus its content is an element 元素.
<p>Hello, world!</p>
<p>This is my first web page.</p>
- The browser draws whatever is between the tags.
- A tag you forget to close, or spell wrong, may not show correctly.