HTML 标签

列举 HTML 标签。

1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script src="url"></script>
<link href="main.css" rel="stylesheet" type="text/css" />
<title>Title</title>
</head>

<body>
<!--注释-->
</body>
</html>

head

1
2
3
<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>

表格

1
2
3
4
5
6
7
8
9
<table>
<caption> </caption>
<tr>
<th></th>
</tr>
<tr>
<td></td>
</tr>
</table>

链接

1
2
3
<a href="url" title="title" target="_blank"> </a>

<a href="mailto:khs1994@khs1994.com">khs1994@khs1994.com</a>

图片

1
<img src=" " alt=" " title=" " />
0%