Blogger Information
Blog 21
fans 0
comment 0
visits 12422
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html常用标签
中天行者
Original
402 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>练习</title>
  6. <!-- title 上的图标-->
  7. <link rel="icon" href="./img/title.png">
  8. <!-- 2秒后跳转 京东-->
  9. <meta http-equiv="refresh" content="2;url=https://www.jd.com" />
  10. <!-- 2秒后刷新-->
  11. <meta http-equiv="refresh" content="2"/>
  12. <!-- 搜索关键字-->
  13. <meta name="keywords" content="练习,作业"/>
  14. <!-- 网站描述-->
  15. <meta name="description" content="这是练习作业"/>
  16. </head>
  17. <body>
  18. <p>这是一段话</p>
  19. <b>加粗文字</b>
  20. <strong>加粗文字</strong>
  21. <em>强调某段文本斜体</em>
  22. <i>斜体字</i>
  23. <!--换行-->
  24. <br />
  25. <!--横线-->
  26. <hr />
  27. <u>下划线</u>
  28. <del>删除线</del>
  29. <h1>H1</h1>
  30. <h2>H2</h2>
  31. <h3>H3</h3>
  32. <h4>H4</h4>
  33. <h5>H5</h5>
  34. <h6>H6</h6>
  35. H<sub>2</sub>0
  36. <br>
  37. x<sup>2</sup>
  38. <br>
  39. <details>
  40. <summary>详细说明</summary>
  41. <h1>你打开后想看到什么</h1>
  42. </details>
  43. <pre>
  44. 原格式 输出
  45. 内容是怎么样就是怎么样:
  46. 不会变化样式
  47. </pre>
  48. <mark>高亮显示背景色</mark>
  49. <hr>
  50. <ul>
  51. <li>无序标签1</li>
  52. <li>无序标签2</li>
  53. <li>无序标签3</li>
  54. </ul>
  55. <ol>
  56. <li>有序标签</li>
  57. <li>HELLO</li>
  58. <li>WORD</li>
  59. </ol>
  60. <dl>
  61. <dt><img src="./img/girl.png" alt="小女孩.png"></dt>
  62. <dd>这个是对上面的dt释义</dd>
  63. </dl>
  64. <br>
  65. <a href="http://www.baidu.com">跳转到百度</a>
  66. <br>
  67. <!--进度条-->
  68. <progress ></progress>
  69. <br>
  70. <!--进度条2-->
  71. <meter style="width: 200px" value="30" max="100" min="1"></meter>
  72. </body>
  73. </html>
  74. `
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post