标签:分隔符 class 换行 play src insert enter pen tle
body内部的常用标签
1. 内容标题 h1-h6 属性:align="left/right/center"
2. 段落标签 p
3. 水平分割线 hr
4. 换行 br
<!DOCTYPE html><!-- 此标签为文档声明用于告诉浏览器使用h5的标准解析页面 --> <html><!-- 根标签除了文档声明所有内容都在html里面 --> <head><!--头标签:用于给浏览器看的内容 --> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body><!--体标签:用于展示给用户看 --> helloworld! <h1 align="center">内容标题1</h1> <h2 align="right">内容标题2</h2> <h3>内容标题3</h3> <h4>内容标题4</h4> <h5>内容标题5</h5> <h6>内容标题6</h6> <hr>分隔符 <p>段落标签1</p> <p align="center">段落标签2</p> <p>段落<br>标签3</p> </body> </html>
Insert title here
helloworld!
段落标签1
段落标签2
段落
标签3
标签:分隔符 class 换行 play src insert enter pen tle
原文地址:https://www.cnblogs.com/xingsir/p/12674593.html