Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
# Level1 标题内容
## Level2 标题内容
### Level3 标题内容
------以上是常用的标题------
------以下是不常用的标题------
#### Level4 标题内容
##### Level5 标题内容
###### Level6 标题内容
以下的是上面标题代码的效果
———以上是常用的标题———
———以下是不常用的标题———
1. Item1
1. item1-1
2. item1-2
3. item1-3
2. Item2
3. Item3
代码效果演示
单行代码const id=123456
多行代码使用“```”
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<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>
</head>
<body></body>
</html>
代码
| ID | NAME | MONEY |
| ----- | ------ | ----- |
| 10000 | JACK | 1000 |
| 10001 | ROES | 2000 |
| 10002 | CAPTON | 3000 |
代码效果
| ID | NAME | MONEY |
| ——- | ——— | ——- |
| 10000 | JACK | 1000 |
| 10001 | ROES | 2000 |
| 10002 | CAPTON | 3000 |
代码![图片说明](图片URL)
代码效果演示
链接代码<https://www.php.cn>
链接代码效果
php 中文网https://www.php.cn
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<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>
</head>
<body></body>
</html>
序号 | 名称 | 描述 |
---|---|---|
1 | 结构化 | 像一根倒置的”树”,从根到叶子,具有明显的层次 |
2 | DOM | html 结构使用”文档对象模型”来描述(document objet model ) |
3 | 元素 | html 文档中的元素,如根节点,头部, 主体等,使用<标签> 来描述 |
4 | 标签 | 用来描述元素,通常具有一定语义,例如<head>,<body> ,也有通用无语义的,如<div><span> |
5 | 属性 | 描述元素特征或行为,写在标签/起始标签中,如<meta charset="UTF-8"> |
6 | html | 文档大小写不敏感的,<BODY> 与<body> 完全没有区别,但推荐全部小写,除约定外(UTF-8 ) |