12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>基础标签</title>
- </head>
- <body>
- <!--
- 案例
- -->
- <!--标题标签
- h1
- -->
- <h1>国庆八天假期</h1>
- <h2>国庆八天假期</h2>
- <h3>国庆八天假期</h3>
- <h4>国庆八天假期</h4>
- <h5>国庆八天假期</h5>
- <h6>国庆八天假期</h6>
- <h7>国庆八天假期</h7>
- <h8>国庆八天假期</h8>
- <h9>国庆八天假期</h9>
- <!--字体标签-->
- <h2><font color="red" >字体标签</font></h2>
- <!--换行标签-->
- 换行
- <br>
- 标签
- <!--段落标签-->
- <p>段落标签1</p>
- <p>DEBUG 09-23 11:12:55,015 Configuring ehcache from ehcache.xml found in the classpath: DEBUG 09-23 11:12:55,015 Configuring ehcache from ehcache.xml found in the classpath: file:/C:DEBUG 09-23 11:12:55,015 Configuring ehcache from ehcache.xml found in the classpath: file:/C:DEBUG 09-23 11:12:55,015 Configuring ehcache from ehcache.xml found in the classpath: file:/C:DEBUG 09-23 11:12:55,015 Configuring ehcache from ehcache.xml found in the classpath: file:/C:file:/C:</p>
- <!--加粗 biu -->
- <b>加粗标签1</b>
- <strong>加粗标签2</strong>
- <i>斜体</i>
- <u>下划线</u>
- <!--居中标签-->
- <center><h1>居中标签</h1></center>
- <!-- hr 横线 -->
- <hr size="10" color="red" >
- </body>
- </html>
|