Blogger Information
Blog 9
fans 0
comment 0
visits 6876
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML中a链接,列表,表格与表单素的用法
移动用户-1144300
Original
650 people have browsed it

<h2>链接元素举例</h2>

  1. <!-- 复制Alt + shilt + 下箭头 -->
  2. <!-- 网站本页面跳转 -->
  3. <a href="URL网址">网站跳转</a>
  4. <!-- 网站新开启页面跳转 -->
  5. <a href="URL网址" target="_blank">网站跳转</a>
  6. <a href="tel:电话号码">拨号</a>
  7. <a href="mailto:邮箱">发电子邮件</a>
  8. <!-- 自动跳到锚点所在 -->
  9. <a href="#锚点的id">锚点</a>
  10. <!-- 如果浏览器识别不了该文件,浏览器会自动下载 -->
  11. <a href="文件压缩包" download="自定义文件名">下载</a>

<h2>列表元素演示</h2>

  1. <!-- 无序列表 -->
  2. <ul>
  3. <li>名称1</li>
  4. <li>名称2</li>
  5. <li>名称3</li>
  6. <li>名称4</li>
  7. <li>名称5</li>
  8. <li>名称6</li>
  9. <li>名称7</li>
  10. </ul>
  11. <!-- 有序列表 -->
  12. <ol>
  13. <li>内容1</li>
  14. <li>内容2</li>
  15. <li>内容3</li>
  16. <li>内容4</li>
  17. <li>内容5</li>
  18. <li>内容6</li>
  19. <li>内容7</li>
  20. </ol>
  21. <!-- 自定义列表 -->
  22. <!-- 要写在一个容器里面默认是dl -->
  23. <dl>
  24. <dt>名字</dt>
  25. <!-- dd可以是多个 -->
  26. <dd>对名字的解释</dd>
  27. <dd>对名字的解释2</dd>
  28. </dl>

<h2> 表格演示</h2>

  1. <table border="1"
  2. cellpadding="5"
  3. cellspacing="0"
  4. width="500"
  5. height="300"
  6. align="center">
  7. align="center"
  8. <!-- 表格标题 -->
  9. <caption>标题</caption>
  10. <!-- 表格页眉 -->
  11. <thead>
  12. <th>导航事件1</th>
  13. <th>导航事件2</th>
  14. <th>导航事件3</th>
  15. </thead>
  16. <!-- 表格主体 -->
  17. <tbody>
  18. <tr>
  19. <td> 具体内容1</td>
  20. <td> 具体内容2</td>
  21. <td> 具体内容3</td>
  22. </tr>
  23. <tr>
  24. 具体内容
  25. <td> 具体内容1</td>
  26. <td> 具体内容2</td>
  27. <td> 具体内容3</td>
  28. </tr>
  29. <tbody>
  30. <tr>
  31. <td>具体内容1</td>
  32. <td>具体内容2</td>
  33. <td>具体内容3</td>
  34. </tr>
  35. </tbody>
  36. </tbody>
  37. <!-- 表格页脚 -->
  38. <tfoot>
  39. <tr>
  40. <td> 具体内容</td>
  41. <td colspan="2">合并</td>
  42. </tr>
  43. </tfoot>
  44. </table>

<h2>表单演示</h2>

  1. <form action="">
  2. <section>
  3. <!-- inputs是一个行内标签所由元素都在一行为了实现垂直结构所以放到section中 -->
  4. <label for="要选中的id值">用户</label>
  5. <input type="text" id="" />
  6. </section>
  7. </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