Blogger Information
Blog 2
fans 0
comment 0
visits 1974
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
简述html文档结构及其三大通用属性
Mr.lai
Original
783 people have browsed it

默写html5的文档结构

默写如下

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viwepor" content="width=device-width,initial-scale=1.0">
<title>Document</title>
</head>
<body>

</body>
</html>

1.那么具体的说明一下这个结构布局的意思

“<!DOCTYPE html> “ <!--文档类型 -->

<html lang="en"></html> <!--html:根元素,但是它有包含两个子元素,一个是head元素,一个body元素 -->

<head></head>叫头元素,这个里面的内容给浏览器或者搜索引擎看的

<body></body>主题元素,页面显示的内容

2.具体介绍一下这个结构美剧代码的意思

3。简述元素的三大通用属性
  1. 1. id:获取页面中的唯一元素,
  2. 2. class:获取页面中的一类元素;
  3. 3. style:设置某个元素的内联样式

总结:

总之一句话,前端页面中,window是浏览器的全局对象,document是
代表当前的html文档,同时在三大通用属性中,id,class,这两个用在
css,js中获取一个或多个元素对象;style:是用来设置某个元素的具体样式的

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:先学习一下markdown语法, 再写作业 , markdown非常简单,10分钟就可以掌握了, 用它写作业, 又快又规范, 有利于快速掌握知识
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