Blogger Information
Blog 5
fans 0
comment 0
visits 2877
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML中常用标签学习示例代码
书伟php由0到1
Original
476 people have browsed it

HTML中<a><img><ul><table><iframe>学习示例代码

<a>标签

1 . <a> 标签用于链接跳转到指定的站外页面

  • 代码示例:<a href="https://www.php.cn/">php中文网</a>

2 . <a>标签通过target属性默认在当前窗口中打开

  • target=_self
  • 案例:
    1. <a href="https://www.tmall.com/" target="_self">天猫</a>
    2. <iframe frameborder="5" name="tamll"></iframe>
    3 . <a>标签通过target属性跳转相同的iframe标签中name属性的名字标签
  • target="tmall name="tamll"
  • 代码示例:
    1. <a href="https://www.tmall.com/" target="tmall">天猫</a>
    2. <iframe frameborder="5" name="tamll"></iframe>
    4 . <a>标签通过锚点/书签来实现站内跳转
  • href="#Hello" id="Hello"
  • 代码示例:
    1. <a href="#Hello">我要要找到你</a>
    2. <h2 id="Hello" style="margin-top: 1000px">你发现我了吗?</h2>
    5 . <a>标签快速回到顶部
  • 通过空的书签或者锚点 #
  • 代码示例:
    <a href="#">回到顶部</a>

<img>标签

  • <img>标签是在网页中齐插入图片,可通过结合<a>标签跳转到指定的url地址
  • <img>标签两个重要属性: src属性和alt属性
  • src属性:表示图片的url地址
  • alt属性:表示图片损坏打不开所代替显示的文字
  • 代码示例:
    <a href="https://www.taobao.com"><img src="cj.png" alt="插件" /></a>

    <ul>标签

  • <ul>标签定义无序列表
  • 代码示例:
    1. <ul>
    2. <li>笔记本</li>
    3. <li>收音机</li>
    4. <li>电脑</li>
    5. </ul>
  • 通过<ul>+<li>+<a>标签一行代码写出导航内容代码
  • ul.menu>li.item*5>a{item$}
  • 代码示例:
    1. <ul class="menu">
    2. <li class="item"><a href="">item1</a></li>
    3. <li class="item"><a href="">item2</a></li>
    4. <li class="item"><a href="">item3</a></li>
    5. <li class="item"><a href="">item4</a></li>
    6. <li class="item"><a href="">item5</a></li>
    7. </ul>
  • 通过<nav>+<a>标签一行代码写出导航内容代码
  • nav>a{item$}*5
  • 代码示例:
    1. <nav>
    2. <a href="">item1</a>
    3. <a href="">item2</a>
    4. <a href="">item3</a>
    5. <a href="">item4</a>
    6. <a href="">item5</a>
    7. </nav>

<table>标签

  • <table> 标签定义HTML表格
  • 表格标题:<caption></caption>
  • 表头:`<thead></thead>
  • 表格主体:` <tbody></tbody>
  • 表格行:<tr></tr>
  • 表格单元格:<td></td>
  • 表尾:<tfoot></tfoot>
  • 表格中合并列:colspan属性
  • 表格中合并行:rowspan 属性
  • 示例代码:
    1. <table width="300" border="2">
    2. <caption>
    3. 表格标题
    4. </caption>
    5. <thead>
    6. <tr bgcolor="red">
    7. <td>item1</td>
    8. <td>item2</td>
    9. <td>item3</td>
    10. <td>item4</td>
    11. <td>item5</td>
    12. </tr>
    13. </thead>
    14. <tbody>
    15. <tr>
    16. <td bgcolor="blue" rowspan="2">item1</td>
    17. <td>item2</td>
    18. <td>item3</td>
    19. <td>item4</td>
    20. <td>item5</td>
    21. </tr>
    22. <tr>
    23. <td>item1</td>
    24. <td bgcolor="green" colspan="3">item3</td>
    25. </tr>
    26. <tr>
    27. <td>item1</td>
    28. <td>item2</td>
    29. <td>item3</td>
    30. <td>item4</td>
    31. <td>item5</td>
    32. </tr>
    33. </tbody>
    34. <tfoot>
    35. <tr>
    36. <td>item1</td>
    37. <td>item2</td>
    38. <td>item3</td>
    39. <td>item4</td>
    40. <td>item5</td>
    41. </tr>
    42. </tfoot>
    43. </table>

<iframe>标签

  • <iframe>标签是内联框架标签,可以在网页内再创建出一个网页窗口。
  • 示例基础使用代码:
    1. <h2><a href="https://www.taobao.com" target="taobao">淘宝</a></h2>
    2. <iframe
    3. srcdoc="<em>点击上面的链接打开</em>"
    4. frameborder="1"
    5. width="300px"
    6. height="500px"
    7. name="taobao"
    8. ></iframe>
  • 示例后台使用代码:
    1. <div class="heder">
    2. <h1>网站管理后台</h1>
    3. <div>
    4. <span>admin</span>
    5. <a href="">退出</a>
    6. </div>
    7. </div>
    8. <ul class="nav">
    9. <li><a href="demo1.html" target="content">菜单1</a></li>
    10. <li><a href="demo2.html" target="content">菜单2</a></li>
    11. <li><a href="demo3.html" target="content">菜单3</a></li>
    12. </ul>
    13. <iframe
    14. srcdoc="<p>请点击左侧菜单栏打开</p>"
    15. frameborder="0"
    16. name="content"
    17. ></iframe>
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