1. 文本元素:
- <h1> 到 <h6>:定义标题,级别由大到小。
- <p>:定义段落。
- <span>:用于内联元素的容器。
- <strong>:定义强调文本,通常以粗体显示。
- <em>:定义强调文本,通常以斜体显示。
- <br>:插入换行。
- <hr>:插入水平线。
<h1>主标题</h1>
<p>这是一个段落。<strong>加粗文本</strong>,<em>斜体文本</em>。</p>
<span>这是一个内联元素。</span>
<br>
<hr>
2. 列表元素:
- <ul>:定义无序列表。
- <ol>:定义有序列表。
- <li>:定义列表项。
<ul>
<li>无序列表项 1</li>
<li>无序列表项 2</li>
</ul>
<ol>
<li>有序列表项 1</li>
<li>有序列表项 2</li>
</ol>
3. 链接与图像:
- <a>:定义链接。
- <img>:插入图像。
<a href="https://www.example.com">访问示例网站</a>
<img src="image.jpg" alt="图片描述">
4. 表格元素:
- <table>:定义表格。
- <tr>:定义表格行。
- <td>:定义表格数据。
- <th>:定义表头单元格。
<table>
<tr>
<th>表头1</th>
<th>表头2</th>
</tr>
<tr>
<td>数据1</td>
<td>数据2</td>
</tr>
</table>
5. 表单元素:
- <form>:定义表单。
- <input>:定义输入框。
- <textarea>:定义多行文本输入框。
- <button>:定义按钮。
<form action="/submit" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
<button type="submit">提交</button>
</form>
这只是HTML元素的一小部分,还有很多其他元素用于创建丰富的网页内容。随着深入学习,你会遇到更多的HTML元素和属性。
转载请注明出处:http://www.zyzy.cn/article/detail/12397/HTML