Blogger Information
Blog 4
fans 0
comment 0
visits 3152
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html5表格表单制作
麻明山
Original
875 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>表1</title>
  6. </head>
  7. <body>
  8. <table border="1" cellspacing="0" cellpadding="3" width="400" height="200">
  9. <caption>
  10. 工资表
  11. </caption>
  12. <thead bgcolor="lightgray">
  13. <tr>
  14. <th>部门</th>
  15. <th>姓名</th>
  16. <th>职务</th>
  17. <th>金额</th>
  18. <th>部门小计</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <tr>
  23. <td rowspan="2">管理部</td>
  24. <td>王大林</td>
  25. <td>总经理</td>
  26. <td >20000</td>
  27. <td rowspan=2>35000</td>
  28. </tr>
  29. <tr>
  30. <td>李小东</td>
  31. <td>副总经理</td>
  32. <td>15000</td>
  33. </tr>
  34. <tr>
  35. <td rowspan="2">工程部</td>
  36. <td>高建筑</td>
  37. <td>总工</td>
  38. <td>45000</td>
  39. <td rowspan="2">75000</td>
  40. </tr>
  41. <tr>
  42. <td>房工程</td>
  43. <td>助工</td>
  44. <td>30000</td>
  45. </tr>
  46. </tbody>
  47. <tfoot>
  48. <tr>
  49. <td colspan="2">合计:</td>
  50. <td colspan="2">壹拾壹万元整</td>
  51. <td>110000</td>
  52. </tr>
  53. </tfoot>
  54. </table>
  55. </body>
  56. </html>

视图效果

表单

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>表单</title>
  7. </head>
  8. <body>
  9. <h3>用户注册</h3>
  10. <hr>
  11. <form>
  12. <fieldset>
  13. <legend>登录</legend>
  14. <div>
  15. <label for="imy">账号:</label>
  16. <input id="imy" type="text" name="username" value="" placeholder="不少于8个字符" required autofocus />
  17. </div>
  18. <div>
  19. <label for="pwd">密码:</label>
  20. <input id="pwd" type="password" name="password" value="" placeholder="不少于6位" required />
  21. </div>
  22. <div>
  23. <label>性别:</label>
  24. <input type="radio" name="gender" id="male" /><label for="male" ></label>
  25. <input type="radio" name="gender" id="female" /><label for="female" ></label>
  26. <input type="radio" name="gender" id="secret" checked /><label for="secret" >保密</label>
  27. </div>
  28. </fieldset>
  29. <fieldset>
  30. <legend>选填</legend>
  31. <div>
  32. <label for="">爱好:</label>
  33. <input type="checkbox" name="hobby[]" id="programme" checked /><label for="programme">文学</label>
  34. <input type="checkbox" name="hobby[]" id="game" /><label for="game">地理</label>
  35. <input type="checkbox" name="hobby[]" id="travel" checked /><label for="travel"">历史</label>
  36. <input type="checkbox" name="hobby[]" id="travel" checked /><label for="travel"">美术</label>
  37. </div>
  38. <div>
  39. <label for="user-img">头像:</label>
  40. <input type="file" name="user_img" id="user-img">
  41. <input type="hidden" name="MAX_FILE_SIZE" value="4194304">
  42. <input type="hidden" name="user_id" value="1010">
  43. </div>
  44. <div>
  45. <label for="myctr">国籍:</label>
  46. <input id="myctr" type="text" list="ctr">
  47. <datalist id="ctr">
  48. <option value="China">China</option>
  49. <option value="Russia">Russia</option>
  50. <option value="USA">USA</option>
  51. <option value="Japan">Japan</option>
  52. </div>
  53. </fieldset>
  54. <hr>
  55. <button>提交</button>
  56. </form>
  57. </body>
  58. </html>

表单效果

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