Blogger Information
Blog 3
fans 0
comment 0
visits 1147
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML常用标签
Original
370 people have browsed it

HTML常用标签

超链接 <a></a>

  1. <a href="跳转地址" target="目标窗口">心之所向</a>

跳转地址可以是:

  1. 普通url
    1. https://www.jd.com
  2. url+元素id:跳转到特定页面的莫个元素
    1. https://www.test.html#element_id
    如果是当前页面,可以直接写 “#element_id”

目标窗口

  1. 默认是在当前窗口打开
  2. “_blank” : 在新窗口打开
  3. 在 iframe 中打开: 通过iframe的名称进行关联
    1. <a href="https://www.jd.com" target="pretty_girl">我的眼里只有你</a>
    2. <hr />
    3. <iframe
    4. name="pretty_girl"
    5. height="500"
    6. width="800"
    7. srcdoc="<h1>为什么受伤的总是我!</h1>"
    8. ></iframe>

图片 img

标签格式

  1. <img src="图片网址" alt="说明文字" width="宽" height="高">

实例:宽高可以只写一个

  1. <img src="https://img.php.cn/upload/article/000/000/003/612c76f293bfd127.png"
  2. alt="PHP布衣到大牛第17期"
  3. width="500"
  4. height=""
  5. />

列表 ol/ul

无序列表

  1. <ul>
  2. <li>itme1</li>
  3. <li>itme2</li>
  4. <li>itme3</li>
  5. </ul>

效果

无序列表

有序列表

  1. <ol>
  2. <li>item1</li>
  3. <li>item1</li>
  4. <li>item1</li>
  5. </ol>

效果
有序列表

表格

代码

  1. table>thead>tr>td{表头}*3^^tbody>tr*2>td{表体}*3^^tfoot>tr>td{表尾}*3

效果

  1. <table>
  2. <thead>
  3. <tr>
  4. <td>表头</td>
  5. <td>表头</td>
  6. <td>表头</td>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr>
  11. <td>表体</td>
  12. <td>表体</td>
  13. <td>表体</td>
  14. </tr>
  15. <tr>
  16. <td>表体</td>
  17. <td>表体</td>
  18. <td>表体</td>
  19. </tr>
  20. </tbody>
  21. <tfoot>
  22. <tr>
  23. <td>表尾</td>
  24. <td>表尾</td>
  25. <td>表尾</td>
  26. </tr>
  27. </tfoot>
  28. </table>

内嵌框架 iframe

代码

  1. <a href="https://www.jd.com" target="pretty_girl">我的眼里只有你</a>
  2. <hr />
  3. <iframe
  4. name="pretty_girl"
  5. height="50%"
  6. width="300"
  7. style="border: 1px solid black"
  8. srcdoc="<h1>为什么受伤的总是我!</h1>"
  9. ></iframe>

点击前效果
before click

点击后效果

CSS 预习

CSS通过特定的选择符来给页面中的元素添加样式

常用选择符有:

  • “.class”
  • “#id”
  • html tag : body,h1,p,table

样式以成对的“属性:值”形式存在于 {} 中,并用”;” 分开。

一些例子如下:

  1. <style>
  2. body {
  3. background-color: powderblue;
  4. }
  5. h1 {
  6. color: blue;
  7. }
  8. p {
  9. color: red;
  10. }
  11. .class_name {
  12. display:none;
  13. width: 200px;
  14. height: 200px;
  15. background-color: red;
  16. margin: auto;
  17. padding: 10px 20px;
  18. }
  19. #id_name {
  20. display: inline;
  21. font-family: 'Courier New', Courier, monospace;
  22. font-size: large;
  23. font-weight: 500;
  24. }
  25. </style>
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