Blogger Information
Blog 8
fans 0
comment 0
visits 5597
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
前端入门:链接元素-列表元素-表格元素-表单元素
zero
Original
570 people have browsed it

1.链接元素

  1. <a href="mailto:674787679@qq.com">联系我们</a>

2.列表元素

  1. <!-- 无序列表 -->
  2. <h3>购物车</h3>
  3. <ul>
  4. <li>苹果5斤</li>
  5. <li>电水壶1个</li>
  6. <li>牛奶2箱</li>
  7. </ul>
  8. <hr />
  9. <!-- 有序列表 -->
  10. <h3>购物车</h3>
  11. <ol start="5">
  12. <li>苹果5斤</li>
  13. <li>电水壶1个</li>
  14. <li>牛奶2箱</li>
  15. </ol>
  16. <!-- 自定义列表 -->
  17. <dl>
  18. <dt>HTML</dt>
  19. <dd>超文本语言</dd>
  20. <dd>页面是由多个元素组成</dd>
  21. <dt>CSS</dt>
  22. <dd>层叠样式</dd>
  23. <dt>JavaScript</dt>
  24. <dd>前端通用脚本语言</dd>
  25. </dl>

3.表格元素

  1. <table
  2. border="1"
  3. cellpadding="5"
  4. cellspacing="0"
  5. width="500"
  6. align="center"
  7. >
  8. <caption>
  9. 员工信息表
  10. </caption>
  11. <tr>
  12. <td>部门</td>
  13. <td>id</td>
  14. <td>姓名</td>
  15. <td>职务</td>
  16. <td>手机</td>
  17. </tr>
  18. <tbody>
  19. <tr>
  20. <td>开发部</td>
  21. <td>100</td>
  22. <td>小王</td>
  23. <td>主管</td>
  24. <td>10000</td>
  25. </tr>
  26. <tr>
  27. <td>开发部</td>
  28. <td>101</td>
  29. <td>小张</td>
  30. <td>工程师</td>
  31. <td>20000</td>
  32. </tr>
  33. </body>
  34. </table>

4.表单元素

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

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