Blogger Information
Blog 4
fans 0
comment 0
visits 2981
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
初识HTML
小码哥
Original
530 people have browsed it

1.html 结构

  1. <!DOCTYPE html>
  2. <!-- 声明 文档 -->
  3. <html lang="en">
  4. <!-- //根标签 如果网站是中文 应该改成 lang=“zh-CN” -->
  5. <head>
  6. <meta charset="UTF-8" />
  7. <!-- //chartset="UTF-8"在此表示字符编码集 -->
  8. <!-- <meta>描述某种特定信息 -->
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  10. <!--
  11. name="viewport" 视口 (可视区屏幕) 如何显示这个页面
  12. width=device-width 设置视口宽度
  13. initial-scale=1.0 设置页面初始绽放比例,`1.0`表示原样 1:1
  14. -->
  15. <title>标题</title>
  16. <!-- //显示网站标题 有利于SEO检索 -->
  17. </head>
  18. <body>
  19. <!-- 主题内容 -->
  20. <h2>我爱你</h2>
  21. <span>fkjghkj</span>
  22. </body>
  23. </html>

2.html中的转义字符表

序号 字符 描述 转义字符 实体编号
1 ' ' 空格 nbsp; &#160;
2 < 小于 &lt; &#60;
3 > 大于 &gt; &#62;
4 & &符号 &amp; &#38;
5 " 双引号 &quot; &#34;
6 © 版权 &copy; &#169;
7 ® 已注册商标 &reg; &#174;
8 × 乘号 &times; &#215;
9 ÷ 除号 &divide; &#247;

3.URL路径的引用

绝对路径

  • http:www.baidu.com
  • 一般绝对路径适用于 其他服务器 或 与 被引用目标当前位置无关

相对路径

  • 指以当前路径为参照

  • 引用同级目录文件 ./1.html

  • 引用上级或者上上级 ../1.html ../../1.html
  • 引用下级 a/b/c/1.html
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

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!