<!-- 文章标题: html常用的标签有哪些 -->
<!-- 1. 标题标签 (h1 到 h6) -->
<h1>这是最大的标题</h1>
<h2>这是一个稍小的标题</h2>
<h3>这是更小的标题</h3>
<h4>这是较小的标题</h4>
<h5>这是很小的标题</h5>
<h6>这是最小的标题</h6>
<!-- 2. 段落标签 (p) -->
<p>这是一个段落。</p>
<!-- 3. 强调文本标签 (strong 和 em) -->
<strong>这是加粗的文本。</strong>
<em>这是斜体的文本。</em>
<!-- 4. 链接标签 (a) -->
<a href="https://www.example.com">点击这里访问示例网站</a>
<!-- 5. 图像标签 (img) -->
<img src="https://www.example.com/image.jpg" alt="描述图片的文字">
<!-- 6. 列表标签 (ul, ol, li) -->
<ul>
<li>无序列表项 1</li>
<li>无序列表项 2</li>
</ul>
<ol>
<li>有序列表项 1</li>
<li>有序列表项 2</li>
</ol>
<!-- 7. 表格标签 (table, tr, th, td) -->
<table border="1">
<tr>
<th>表头 1</th>
<th>表头 2</th>
</tr>
<tr>
<td>单元格 1</td>
<td>单元格 2</td>
</tr>
</table>
<!-- 8. 表单标签 (form, input, textarea, button) -->
<form action="/submit_form" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br><br>
<label for="comment">评论:</label><br>
<textarea id="comment" name="comment"></textarea><br><br>
<button type="submit">提交</button>
</form>
<!-- 9. 分割线标签 (hr) -->
<hr>
<!-- 10. 预格式化文本标签 (pre) -->
<pre>
这是预格式化的文本。
它会保留空格和换行符。
</pre>
上一篇:html表格边框
下一篇:用html编写一个简单的网页
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站