Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
# level 1 headline
## level 2 headline
### level 3 headline
#### level 4 headline
##### level 5 headline
###### level 6 headline
1.单行:const box = document.queryselector("#box")
2.多行
namespace core;
class Demo
{
//...
}
id | name | salary | |
---|---|---|---|
1 | 朱老师 | zhu@qq.com | 123456 |
2 | 王老师 | wang@qq.com | 345687 |
3 | 李老师 | li@qq.com | 554211 |
语法: ![图片说明](图片链接)
语法:<链接地址>
第19期地址:https://www.php.cn/course/1382.html
<!-- 文档类型 -->
<!DOCTYPE html>
<!-- 根元素:lang 页面语言 -->
<html lang="en">
<!-- 头元素:页面描述,供浏览器或者搜索引擎解析时参考 -->
<head>
<!-- 元标签meta:charset 默认字符集,utf8可表示世界上几乎所有已知语言字符 -->
<meta charset="UTF-8">
<!-- 浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无,现在微软也采用了chrome内核啦 -->
<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="style.css">
<!-- 引入外部脚本 -->
<script src="outer.js" ></script>
</head>
<!-- 主题元素:页面实际显示的内容,也是开发重点和用户真正关注的部分 -->
<body>
<h1 style="color: red">hello world</h1>
<h1>测试无样式</h1>
<!-- 单标签:通常用于引用外部资源
双标签:内容来自开发者提供 -->
</body>
</html>