Blogger Information
Blog 6
fans 0
comment 0
visits 3798
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
补作业——0702作业
18年了要发呀
Original
859 people have browsed it

0702作业
无序列表

  1. <h2 align="center">01.无序列表</h2>
  2. <div align="center">
  3. <ul>
  4. <li>首页</li>
  5. <li>关于我们</li>
  6. <li>产品中心</li>
  7. <li>联系我们</li>
  8. </ul>
  9. </div>

表格

  1. <h2 align="center">02.表格演示</h2>
  2. <table border="1" cellspacing="0" align="center">
  3. <caption>蔬菜表</caption>
  4. <thead>
  5. <th width="50">序号</th>
  6. <th width="150">品名</th>
  7. <th width="150">价格</th>
  8. </thead>
  9. <tbody>
  10. <tr align="center">
  11. <td>1</td>
  12. <td>萝卜</td>
  13. <td>5</td>
  14. </tr>
  15. <tr align="center">
  16. <td>2</td>
  17. <td>小白菜</td>
  18. <td>6</td>
  19. </tr>
  20. <tr align="center">
  21. <td>3</td>
  22. <td>花菜</td>
  23. <td>8</td>
  24. </tr>
  25. </tbody>
  26. <tfoot>
  27. <tr align="center">
  28. <td colspan="2"><strong>总价</strong></td>
  29. <td><strong>19</strong></td>
  30. </tr>
  31. </tfoot>
  32. </table>

表单

  1. <h2>03.表单演示</h2>
  2. <div>
  3. <h2>报名提交</h2>
  4. <form action="">
  5. <div>
  6. <label for="username">姓名</label>
  7. <input type="text" name="username" id="username" autofocus>
  8. </div>
  9. <div>
  10. <label for="age">年龄</label>
  11. <input type="text" name="age" id="age">
  12. </div>
  13. <div>
  14. <label for="man">性别</label>
  15. <input type="radio" name="sex" id="man" checked><label for="man"></label>
  16. <input type="radio" name="sex" id="lady"><label for="lady"></label>
  17. </div>
  18. <div>
  19. <label for="schooling">学历</label>
  20. <select id="schooling">
  21. <option value="小学" selected>小学</option>
  22. <option value="初中">初中</option>
  23. <option value="高中">高中</option>
  24. <option value="中专">中专</option>
  25. </select>
  26. </div>
  27. <div>
  28. <label for="game">爱好</label>
  29. <input type="checkbox" id="game">
  30. <label for="game">打游戏</label>
  31. <input type="checkbox" id="book" checked>
  32. <label for="book">读书</label>
  33. </div>
  34. <div>
  35. <label for="mess">留言内容</label><br>
  36. <textarea name="mess" id="mess" cols="33" rows="13">
  37. </textarea>
  38. </div>
  39. <button>提交</button>
  40. <input type="reset" value="重置">
  41. </form>
  42. </div>
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