Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
# 一级标题
## 二级标题 ----以此类推
单行代码:<h2>Hello World</h2>
多行代码:
<h1>Hello World</h1>
<h2>Hello</h2>
id | name |
---|---|
18 | 张三 |
直播回放链接:https://www.php.cn/code/48399.html
<!--文档类型 -->
<!DOCTYPE html>
<!-- 根元素。 lang: 页面语言 -->
<html lang="zh-CN">
<!-- 头元素: 页面描述,供浏览器或搜索引擎解析时参考 -->
<head>
<!-- 元标签meta。 charset:默认字符集 -->
<meta charset="UTF-8" />
<!-- 浏览器兼容配置 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--视口适配控制。 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 页面标题:显示在浏览器标签页-->
<title>Document</title>
<!-- 引入外部样式表 -->
<link rel="stylesheet" href="Hello.css" />
<!-- 引入外部脚本 -->
<script type="javascript" src="index.js"></script>
</head>
<!-- 主体元素: 页面实际显示的内容 -->
<body>
<h1>Hello World</h1> <!--双标签-->
<img src="xxx.jpg" alt="" /><!--单标签 -->
<!-- 单标签: 通常用于引用外部资源,双标签: 内容来自开发者提供 -->
<!--单双标签的判断并不绝对 -->
</body>
</html>