Blogger Information
Blog 55
fans 3
comment 0
visits 54698
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML页面的文档结构与HTML元素的三大通用属性
王佳祥
Original
699 people have browsed it

HTML页面的文档结构与HTML元素的三大通用属性

一、HTML5文档结构

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <!--注释-->
  10. </body>
  11. </html>

二、HTML元素的三大通用属性

名称 作用 优先级 代码
id 获取页面中的唯一元素 id>class id=”” #id
class 获取页面中的一类元素 class<id class=”” .class
style 设置元素的内联样式 style>id>class style=””

三、学习收获

  1. 学习了HTML5文档结构,对html5文档结构有了更深的认识。
  2. 认识了HTML元素的三大通用属性,id、class、style。
  3. 用VSCode下载了live sever实时刷新网页预览插件,可以用多种方法来运行,我选择用快捷键ALT+L ALT+O(按住ALT键不松手接着按L键O键)
  4. 认识了两个全新的函数
    let声明的变量,只在let命令所在的代码块内有效
    const声明一个只读的常量,一旦声明常量不能改变
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