<!-- html开始标签 -->
<!DOCTYPE html>
<!-- head 标签 -->
<head>
<meta http-equiv="content-type" charset="UTF-8">
<!--字符编码(请求头)-->
<meta name="keywords" content="标签, html, meta">
<!--检索关键字-->
<meta name="description" content="描述信息">
<!--描述信息-->
<!--<meta http-equiv="refresh" content="2">-->
<!--2秒后刷新,跳转到新的url-->
<!-- <meta http-equiv="refresh" content="2;url=https://www.baidu.com">-->
<meta http-equiv="x-ua-compatible" content="IE=EmulateIE11" />
<!--兼容IE浏览器-->
<title>Home</title>
<!--标题-->
<link rel="icon" href="https://cos.amfc.ltd/learn/html/ammo_num.ico">
<!--标题图标-->
</head>
<body>
<h4 id="1">自定义标签</h4>
<div style="color: red; background-color: aqua;height: 100px; width:50%; font-size: 40px; text-align: center;">自定义标签
</div><br>
<em style="background-color: firebrick;">斜体</em><br>
<h4>特殊字符</h4>
<<br>
><br>
<br>
块级标签: 独占一行<br>
内联标签: 自己设置<br>
<h4>图片标签</h4>
<!-- <img src="https://cos.amfc.ltd/Amfc/file/photo/wallpaper1.jpg" alt="壁纸" title="图片" width="1024px" height="768"><br> -->
<h4>超链接标签</h4>
<a href="https://google.com" target="blank">google</a><br>
href: 超链接地址<br>
target = 'blank' : 在新的页面打开超链接<br>
<!-- <a href="https://google.com" target="blank"><img src="https://cos.amfc.ltd/Amfc/file/photo/wallpaper1.jpg" alt="" width="1024" height="768"></a><br> -->
<h4>无序列表标签</h4>
<ul>
<li>无序第一列</li>
<li>无序第二列</li>
</ul>
<h4>有序标签</h4>
<dl>
<dt>标题</dt>
<dd>第一节</dd>
<dd>第二节</dd>
</dl>
<a href="#1">返回顶部</a><br>
#n :表示在网页内找id = n