1.标题标签
<h1>..<h6>
2.段落标签
<p>...</p>
3.换行标签
<br/>
4.水平线<hr>
5.样式标签
加粗<stong> </stong> 或者<b></b>
倾斜<em></em>
1 <html> 2 <!--声明式:不能显示--> 3 <head> 4 <!--设置网页编码--> 5 <meta charset="utf-8"/> 6 <!--关键词:是否能被搜索引擎搜到--> 7 <meta name ="keywords" content="学习html"/> 8 <!--描述,当搜到本网页时,展示的简介内容...--> 9 <meta name="description" content="学习html非常地好啊,爽呆呆..."/> 10 <title> 我的标题 html</title> 11 </head> 12 <!--能够显示的内容--> 13 <body> 14 <h1>一级标题</h1> 15 <h2>二级标题</h2> 16 <h3>三级标题</h3> 17 <h4>四级标题</h4> 18 <h5>五级标题</h5> 19 <h6>六级标题</h6> 20 <p>生活毕竟死傲娇浮动块</p> 21 <p>23333333333333333</p> 22 <hr> 23 hello world<strong> hello world</strong> 24 <br/> 25 <em><b> 26 二货 27 </b><em> 28 <em> 29 大傻 30 </em> 31 </body> 32 </html>
原文:https://www.cnblogs.com/dss-99/p/14287421.html