Blogger Information
Blog 3
fans 0
comment 0
visits 1379
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html结构
玛琳
Original
502 people have browsed it

常用标签类

  1. 主体代码结构:


    1. <!DOCTYPE html> <!--声明头-->

    2. <html>

    3. <head> <!--头标签-->

    4. </head>

    5. <body> <!--体标签-->

    6. </body>

    7. </html>

  2. <head></head>中常用标签


    1. <head lang="zh-cn"> <!--让搜索引擎知道是中文站还是英文站-->

    2. <title>标题</title> <!--设置网站标题-->

    3. <meta chaset="utf-8"> <!--设置字符集-->

    4. <meta name="" content=""><!--设置网站关键字-->

    5. <meta rel="icon" herf="" type=""><!--标题图标-->

  3. <body></body>中常用标签

    文本格式

    实体字符

    超链接标签<a></a>

    图片标签</img><img>

    列表标签

    2021-11-10 09:53:26 星期三

    1. 无序列表:<ul></ul>

    2. <ul>

    3.     <li></li>

    4.     <li></li>

    5.     <li></li>

    6. </ul>

    7. 有序列表:<ol></ol>

    8. <ol>

    9.     <li></li>

    10.     <li></li>

    11.     <li></li>

    12. </ol>

    13. 描述列表:<dl></dl>

    14. <dl>

    15.     <dt>大名字</dt>  

    16.     <dd>详细名字</dd>    没有包裹关系

    17. </dl>

    18. <img src="" alt="" title="">

    19. <!--属性

    20. src:图片地址

    21. alt:图片加载失败替换图标的文字

    22. title:标题,鼠标悬停时出现

    23. -->

    24. <a href="" target=""></a>

    25. <!--属性

    26. href:跳转的地址

    27. target:页面打开方式

    28. _self,默认当前页面打开

    29. _blank,新页面打开

    30. -->

    31. 相对路径:文件和html文件在同一目录下用 "./",上一级目录用 "../"

    32. 绝对路径:从根目录开始 "file:///c:/..."

    33. 链接为文件类型:点击后下载

    34. 链接为网站地址:"https://www.xxx.com"

    35. 空格:&nbsp;

    36. 小于号:&gt;

    37. 大于号:&lt;

    38. 版权:&copy;

    1. 标题标签:

    2. <h1></h1>标题1 <!--字号最大-->

    3. <h2></h2>标题2

    4. <h3></h3>标题3

    5. <h4></h4>标题4

    6. <h5></h5>标题5

    7. <h6></h6>标题6 <!--字号最小-->

    8. 段落标签:<p></p>

    9. 换行标签:<br>

    10. 加粗标签:<b></b>

    11. 斜体标签:<i></i>

    12. 强调标签:<strong></strong>或者<em></em>

    13. 横线标签:<hr>

    14. 下划线标签:<u></u>

    15. 删除标签:<del></del>

    16. 上标标签:<sub></sub>

    17. 下标标签:<sup></sup>

    Correcting teacher:PHPzPHPz

    Correction status:qualified

    Teacher's comments:不错,在老师还没有讲markdown之前,就已经提前预习了,而且注释的也很详细
    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