Test02.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>基础标签</title>
  6. </head>
  7. <body>
  8. <!--
  9. 案例
  10. -->
  11. <!--标题标签
  12. h1
  13. -->
  14. <h1>国庆八天假期</h1>
  15. <h2>国庆八天假期</h2>
  16. <h3>国庆八天假期</h3>
  17. <h4>国庆八天假期</h4>
  18. <h5>国庆八天假期</h5>
  19. <h6>国庆八天假期</h6>
  20. <h7>国庆八天假期</h7>
  21. <h8>国庆八天假期</h8>
  22. <h9>国庆八天假期</h9>
  23. <!--字体标签-->
  24. <h2><font color="red" >字体标签</font></h2>
  25. <!--换行标签-->
  26. 换行
  27. <br>
  28. 标签
  29. <!--段落标签-->
  30. <p>段落标签1</p>
  31. <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>
  32. <!--加粗 biu -->
  33. <b>加粗标签1</b>
  34. <strong>加粗标签2</strong>
  35. <i>斜体</i>
  36. <u>下划线</u>
  37. <!--居中标签-->
  38. <center><h1>居中标签</h1></center>
  39. <!-- hr 横线 -->
  40. <hr size="10" color="red" >
  41. </body>
  42. </html>