📅  最后修改于: 2023-12-03 15:31:15.752000             🧑  作者: Mango
HTML 是一种用于构建网页的标记语言。HTML 标签是一种用于描述网页上的元素的代码。以下是一些常用的 HTML 标签:
<h1>
- <h6>
标签用于定义标题,其中 <h1>
是最大的标题, <h6>
是最小的标题。
例如:
# This is a heading level 1
## This is a heading level 2
### This is a heading level 3
<p>
标签用于定义文本段落。
例如:
<p>This is a paragraph.</p>
<a>
标签用于定义超链接,链接可以指向其他网站或当前网站的其他页面。
例如:
<a href="https://www.example.com">This is a link to example.com</a>
<img>
标签用于插入图像。
例如:
<img src="img/example.png" alt="Example image">
<ul>
和 <ol>
标签用于创建无序和有序列表。
例如:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<ol>
<li>First item</li>
<li>Second item</li>
</ol>
<input>
标签用于创建用户输入字段(如表单)。
例如:
<input type="text" placeholder="Enter your name">
这些是 HTML 的一些常用标签,当然还有很多其他的标签可以使用。学习标签是构建网页的第一步。