Blogger Information
Blog 1
fans 0
comment 0
visits 245
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1. 写出html文档结构,并解释每个成员的功能与作用 2. ![2.演示布局元素,重点是 tag+class 3. 演示图文的语义化解决方案 4. 演示图像,链接与列表元素
手机用户1567574266
Original
245 people have browsed it
  1. 写出html文档结构,并解释每个成员的功能与作用 2. 2.演示布局元素,重点是 tag+class 3. 演示图文的语义化解决方案 4. 演示图像,链接与列表元素

<!-- 1. 文档类型元素 -->

<!DOCTYPE html>
<!-- 2. 根元素: 浏览器渲染html的起点,入口 -->
<!-- lang="zh-CN": 属性,标签的特征,用"键(lang),值(zh-CN)对"的方式来表示 -->

<html lang="zh-CN">
<!-- 根元素只有二个子元素 <head><body> -->
<!-- 2.1 头元素: 浏览器, 搜索引擎SEO-->
<head>
<!-- 2.1.1 元标签,中介,媒婆 -->
<!-- 页面编码 -->
<meta charset="UTF-8">
<!-- 兼容模式: 多余的 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- 视口设置: 视口(可视窗口), 375px 375px -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 页面标题 -->
<title>Document</title>
</head>
<!-- 页面主题 -->
<body>
</body>
</html>

Correcting teacher:PHPzPHPz

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