Blogger Information
Blog 16
fans 0
comment 0
visits 11269
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML页面文档结构与HTML标签以及三大通用属性的认识
evan
Original
700 people have browsed it

1. 默写html页面的文档结构

实例

<!DOCTYPE html>         //HTML5标准网页声明

<html lang="en">   //HTML根元素

<head>  //头部元素的标签

   <meta charset="UTF-8"> //元数据, 定义网站编码为utf-8
   <title>php</title>  //网站标题

</head>

<body>  //网页主体
<h2></h2>  //2级标题元素

 <p></p> //段落元素

</body>

</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

2. 默写html元素的三大通用属性

1) id 具有唯一性,使用时候注意不要使用同一个ID ,浏览器是不能识别是否  有相同的ID存在

2)class 类元素,可以重复使用在多个标签上;

3)style 内联元素,优选级比较高;

3. 理解元素,类,id不同级别的样式规则

三个元素的优选级

根元素< class < id < style


总结一下,昨天老师结合案例来讲课,这个是很不错的,可以让我学以致用,提前熟悉了JS的标签与html文档的结合,以及初识console.log与浏览器的反馈结果;知道CSS层叠样式元素的一些规则;总之,收获良多。


Correcting teacher:WJWJ

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