Blogger Information
Blog 13
fans 0
comment 0
visits 9132
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html 做的课程表 及用户提交表单
ianren
Original
399 people have browsed it

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div>
  11. <table border="1" width="600" align="center">
  12. <caption>
  13. 深圳小学课程表
  14. </caption>
  15. <thead>
  16. <tr bgcolor="#999">
  17. <th>时间</th>
  18. <th>星期一</th>
  19. <th>星期二</th>
  20. <th>星期三</th>
  21. <th>星期四</th>
  22. <th>星期五</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <tr>
  27. <td rowspan="4">上午</td>
  28. <td>数学</td>
  29. <td>语文</td>
  30. <td>数学</td>
  31. <td>英语</td>
  32. <td>数学</td>
  33. </tr>
  34. <tr>
  35. <td>数学</td>
  36. <td>语文</td>
  37. <td>数学</td>
  38. <td>英语</td>
  39. <td>数学</td>
  40. <!-- <td>6</td> -->
  41. </tr>
  42. <tr>
  43. <td>数学</td>
  44. <td>语文</td>
  45. <td>数学</td>
  46. <td>英语</td>
  47. <td>数学</td>
  48. <!-- <td>数学</td> -->
  49. </tr>
  50. <tr>
  51. <td>数学</td>
  52. <td>语文</td>
  53. <td>数学</td>
  54. <td>英语</td>
  55. <td>数学</td>
  56. <!-- <td>数学</td> -->
  57. </tr>
  58. <tr>
  59. <td colspan="6" align="center">中午休息</td>
  60. <!-- <td></td>
  61. <td></td>
  62. <td></td>
  63. <td></td>
  64. <td>数学</td> -->
  65. </tr>
  66. <tr>
  67. <td rowspan="2">下午</td>
  68. <td>数学</td>
  69. <td>语文</td>
  70. <td>数学</td>
  71. <td>英语</td>
  72. <td>数学</td>
  73. </tr>
  74. <tr>
  75. <td>数学</td>
  76. <td>语文</td>
  77. <td>数学</td>
  78. <td>英语</td>
  79. <td>数学</td>
  80. <!-- <td>数学</td> -->
  81. </tr>
  82. </tbody>
  83. <tfoot>
  84. <tr>
  85. <td>备注</td>
  86. <td colspan="5" align="center">课程表 表尾</td>
  87. </tr>
  88. </tfoot>
  89. </table>
  90. </div>
  91. </body>
  92. </html>

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div style="margin-left: 200px">
  11. <h2>用户登录</h2>
  12. <div>
  13. <form action="123.php" method="post">
  14. <label for="email">邮箱:</label>
  15. <input
  16. type="text"
  17. name="email"
  18. id="email"
  19. placeholder="请输入邮箱"
  20. required
  21. /><br />
  22. <label for="password">密码:</label>
  23. <input
  24. type="password"
  25. name="password"
  26. id="password"
  27. placeholder="请输入密码"
  28. required
  29. /><br />
  30. <button>提交</button>
  31. </form>
  32. </div>
  33. </div>
  34. </body>
  35. </html>
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