Blogger Information
Blog 26
fans 0
comment 0
visits 18143
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
链接,列表元素 表格学习
雪~人胖胖
Original
463 people have browsed it

链接元素+列表元素

  1. <!-- 页眉 -->
  2. <header>
  3. <!-- 在新网页打开中文网的链接 -->
  4. <ul>
  5. <li>
  6. <a href="https://www.php.cn/" target="_blank" id="anchor"
  7. >php中文网</a
  8. >
  9. </li>
  10. <li>
  11. <a href="https://www.baidu.com/">百度</a>
  12. </li>
  13. <li>
  14. <a href="">main3</a>
  15. </li>
  16. </ul>
  17. <time>2020-4-6</time>
  18. <abbr title="具体地址">在这</abbr>
  19. <a href="#anchor"><h1 style="margin-top: 1000px;">返回顶部</h1></a>
  20. </header>

表格

  1. <!-- 表格 -->
  2. <table
  3. border="1"
  4. cellpadding="5"
  5. cellspacing="0"
  6. width="500"
  7. align="center"
  8. >
  9. <colgroup bgcolor="lightpink">
  10. <col />
  11. <col bgcolor="lightgreen" />
  12. <col bgcolor="yellow" span="2" />
  13. <col />
  14. </colgroup>
  15. <caption style="font-size: 1.5rem; margin-bottom: 10px;">
  16. 员工信息表
  17. </caption>
  18. <thead>
  19. <tr>
  20. <th>部门</th>
  21. <th>ID</th>
  22. <th>姓名</th>
  23. <th>职务</th>
  24. <th>手机</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <tr>
  29. <td rowspan="3">开发部</td>
  30. <td>101</td>
  31. <td>小王</td>
  32. <td>主管</td>
  33. <td>188345****</td>
  34. </tr>
  35. <tr>
  36. <!-- <td>开发部</!-->
  37. -->
  38. <td>102</td>
  39. <td>小张</td>
  40. <td>程序员</td>
  41. <td>158345****</td>
  42. </tr>
  43. <tr>
  44. <!-- <td>开发部</td> -->
  45. <td>103</td>
  46. <td>小李</td>
  47. <td>实习生</td>
  48. <td>134345****</td>
  49. </tr>
  50. </tbody>
  51. <tbody>
  52. <tr>
  53. <td rowspan="3">销售部</td>
  54. <td>104</td>
  55. <td>小马</td>
  56. <td>主管</td>
  57. <td>188345****</td>
  58. </tr>
  59. <tr>
  60. <!-- <td>销售部</!-->
  61. -->
  62. <td>105</td>
  63. <td>小刘</td>
  64. <td>客服</td>
  65. <td>178345****</td>
  66. </tr>
  67. <tr>
  68. <!-- <td>销售部</!-->
  69. -->
  70. <td>104</td>
  71. <td>小朱</td>
  72. <td>实习生</td>
  73. <td>188345****</td>
  74. </tr>
  75. </tbody>
  76. <tfoot>
  77. <tr>
  78. <td>备注:</td>
  79. <td colspan="4">所有员工离职必须提前30天提交书面申请</td>
  80. <!-- <td></!-->
  81. <!-- <td></td> -->
  82. <!-- <td></td> -->
  83. </tr>
  84. </tfoot>
  85. </table>

表单

  1. <!-- 表单 -->
  2. <h3>用户注册</h3>
  3. <form action="" method="POST">
  4. <section>
  5. <label for="username">用户名:</label>
  6. <input
  7. type="text"
  8. id="username"
  9. name="username"
  10. placeholder="用户名不少于6位"
  11. required
  12. autofocus
  13. size="15"
  14. />
  15. </section>
  16. <section>
  17. <label for="password">密码:</label>
  18. <input
  19. type="password"
  20. id="password"
  21. name="password"
  22. placeholder="密码不少于8位"
  23. required
  24. size="10"
  25. />
  26. </section>
  27. <!-- 单选框 -->
  28. <section>
  29. <label for="secret">性别:</label>
  30. <div class="box">
  31. <input type="radio" name="gender" id="male" value="1" /><label
  32. for="male"
  33. ></label
  34. >
  35. <input type="radio" name="gender" id="female" value="2" /><label
  36. for="female"
  37. ></label
  38. >
  39. <input
  40. type="radio"
  41. name="gender"
  42. id="secret"
  43. value="3"
  44. checked
  45. /><label for="secret">保密</label>
  46. </div>
  47. </section>
  48. <!-- 复选框 -->
  49. <section>
  50. <div class="box">
  51. <label for="game">兴趣:</label>
  52. <input type="checkbox" name="hobby[]" id="game" /><label for="game"
  53. >游戏</label
  54. ><input type="checkbox" name="hobby[]" id="travel" checked /><label
  55. for="travel"
  56. >旅游</label
  57. >
  58. </div>
  59. </section>
  60. </form>
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!