HTML/Html-Notes/01-块标签.html
2023-05-01 19:37:40 +08:00

58 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<!-- 网页 -->
<head>
<!-- 网页设置 -->
<title>网页栏标题</title>
<link rel="icon" href="_sitegray/_sitegray_d.css"/>
<!-- rel="icon" 设置网页小图标 -->
<meta charset="UTF-8">
<!-- 设置文件编码格式 -->
</head>
<body>
<!-- 网页内容 -->
正常网页内容
<h1>h1标签</h1>
<h2>h2标签</h2>
<h3>h3标签</h3>
<h4>h4标签</h4>
<h5>h5标签</h5>
<h6>h6标签</h6>
<!-- 注意:
h1 标签,正常来说在网页中有且只有一个
为了方便搜索引擎检索
-->
<hr>
<!-- 分割线 -->
<p>p标签</p>
<p style="color: pink;">p标签</p>
<!-- 段落标签: 段落之间有一定的距离 -->
<!--注意:
p标签内部不能放块标签
如果放了会阻断p标签
-->
<hr>
<!-- div标签就是朴素的块标签 -->
<div>div标签</div>
<div>div标签</div>
<div>div标签</div>
</body>
</html>
<!-- 快捷注释
ctrl + / 行注释
h${我是h$}*6 h1-h6一下子写完
-->