Blogger Information
Blog 16
fans 0
comment 0
visits 13076
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML基本知识须知
小雨丶
Original
530 people have browsed it
0.HTML5语义化标签

语义化标签的作用:

语义化标签就是尽量使用有相对应的结构的含义的Html的标签
更利于搜索引擎的抓取(SEO的优化)和开发人员的维护(可维护性更高,结构清晰,易于阅读)。

1.浏览器功能:

  1. 将用户的请求发送到服务器,服务器响应给浏览器响应的数据

2.URL组成部分

  1. HTTP:协议/规则
  2. www.xxx.com:可以是主机名,域名,IP地址,本地IP127.0.0.1,本地主机名localhost
  3. localhost:8080:8080为端口号,一个服务器可能有多个功能,不同的端口就是不同功能的输出
  4. 默认首页:index,default

3.HTTP协议核心是什么?

  1. 请求与响应,requestresponse

4.HTML是什么

  1. 超文本编辑语言,所有资源在浏览器打开都会解析成HTML文档
  2. HTML是结构化文档,(tree树结构),描述元素在HTML文档中的位置,可以通过结构定位,遍历等
  3. HTML元素使用标签来描述的,元素的特性用属性描述,
  4. 属性的值:
  5. - 自定义字符串
  6. - 预定义字符串
  7. - 数值
  8. - Boolean(添加某个属性默认就是true,没有就是false
  9. ...

5.块元素,行内元素,行内块元素

  1. 块元素:有宽高,paddingmargin,独占一行
  2. 行内元素:没有宽高,paddingmargin左右
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!