Blogger Information
Blog 9
fans 0
comment 0
visits 6237
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html基础2(4.3作业)+ php培训第十一期线上班
Original
568 people have browsed it

4.3作业

1、链接元素

  • a标签可以是一个url跳转
  • 如果a标签中的内容是一个文件,会触发下载
  • a标签也可是一个锚点,跳转本页面中的指定位置
  • a标签可可以用来打电话,发邮件。

2、列表元素

  • 无序列表ul
  • 有序列表ol
  • 自定义列表dl

3、表格元素

  • tr 代表一行
  • 一个td是一个单元格
  • tbody代表表格的主题部分
  • thead 指表头
  • caption 用来表示表格的标题

4、具体代码演示

  1. <!--
  2. * @Descripttion:
  3. * @version:
  4. * @Author: pengpeng
  5. * @Date: 2020-04-04 16:55:41
  6. * @LastEditors: pengpeng
  7. * @LastEditTime: 2020-04-04 17:38:34
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <title></title>
  15. </head>
  16. <body>
  17. <!-- 链接元素的演示 -->
  18. <div>
  19. <h2>链接元素</h2>
  20. <!-- 重新再另一个页面打开url,target 不写默认是_self -->
  21. <a href="http://www.baidu,com" target="_blank"></a>
  22. <!-- a标签也可以是一个 下载 -->
  23. <a href="./0403.zip">我是一个下载按钮</a>
  24. <!-- a标签也可以是一个锚点 -->
  25. <a href="#maodian">我是一个锚点</a>
  26. <!-- a标签也可以用来打电话 -->
  27. <a href="tel:151359****">打电话</a>
  28. <!-- 按标签可以用来发邮件 -->
  29. <a href="mailTo:12346@qq.com">发邮件</a>
  30. </div>
  31. <!-- 列表元素的演示 -->
  32. <div>
  33. <div>
  34. <h2>无序列表</h2>
  35. <ul>
  36. <li>1</li>
  37. <li>2</li>
  38. <li>3</li>
  39. <li>4</li>
  40. </ul>
  41. </div>
  42. <div>
  43. <h2>有序列表</h2>
  44. <ol>
  45. <li>1</li>
  46. <li>2</li>
  47. <li>3</li>
  48. <li>4</li>
  49. </ol>
  50. </div>
  51. <div>
  52. <h2>自定义列表</h2>
  53. <dl>
  54. <dt>水果</dt>
  55. <dd>苹果</dd>
  56. <dd>栗子</dd>
  57. <dd>香蕉</dd>
  58. <dt>家电</dt>
  59. <dd>洗衣机</dd>
  60. <dd>冰箱</dd>
  61. <dd>电饭锅</dd>
  62. </dl>
  63. </div>
  64. </div>
  65. <div>
  66. <h2>表格元素</h2>
  67. <table border="1" cellspacing="0" width="500" height="700">
  68. <caption>表格标题</caption>
  69. <thead>
  70. <td>id</td>
  71. <td>name</td>
  72. <td>sex</td>
  73. <td>address</td>
  74. </thead>
  75. <tbody>
  76. <tr>
  77. <td>1</td>
  78. <td>小十三</td>
  79. <td>23</td>
  80. <td>美国</td>
  81. </tr>
  82. <tr>
  83. <td>2</td>
  84. <td>小事儿</td>
  85. <td>43</td>
  86. <td>英国</td>
  87. </tr>
  88. </tbody>
  89. </table>
  90. </div>
  91. <div style="width: 100px;height: 100px;background-color: #6858f8;margin-top: 1000px;" id="maodian"></div>
  92. </body>
  93. </html>

5、总结

以前对表格,表单元素知道的很少,现在才知道原来表格有那么多属性,很多东西都值得学习,这里代码只是做了简单的演示。

Correcting teacher:天蓬老师天蓬老师

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