HTML 标签

时间:2022-04-29
本文章向大家介绍HTML 标签,主要内容包括head、标签、基本概念、基础应用、原理机制和需要注意的事项等,并结合实例形式分析了其使用技巧,希望通过本文能帮助到大家理解应用这部分内容。

列举 HTML 标签。

head

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1">

标签

注释 <!--注释-->

空格 &nbsp;

引用 <q> </q>

大段引用 <blockquote> </blockquote>

强调 <em> </em> <strong> </strong>

地址 <address> </address>

代码 <code> </code> <pre> </pre>

无序列表

<ul>
  <li> </li>
</ul>

有序列表

<ol>
   <li> </li>
</ol>

表格

<table>
  <caption> </caption>
<tr>
  <th></th>
</tr>
<tr>
  <td></td>
</tr>
</table>

链接

<a href=" " title=" " target="_blank"> </a>

图片

<img src=" " alt=" " title=" " />