markdown 语法
1.标题
# level 1 headLine
## level 2 headLine
### level 3 headLine
#### level 4 headLine
##### level 5 headLine
2.列表
2.1有序列表
- item1
- item2
- item3
- subItem3-1
- subItem3-2
- subItem3-3
2.2无序列表
- item1
- item2
- item3
- subItem3-1
- subItem3-2
- subItem3-3
3.代码
1.单行:const
2.多行:
namespace core;
class Demo{
echo 123;
}
4.表格
id | name | |
---|---|---|
1 | wang1 | wang1@qq.com |
2 | wang2 | wang2@qq.com |
3 | wang3 | wang3@qq.com |
4 | wang4 | wang4@qq.com |
5 | wang5 | wang5@qq.com |
5.图片
语法:
链接:
第 19 期:https://www.php.cn/code/48400.html
HTML标签学习小结:
<!-- !文档类型 -->
<!DOCTYPE html>
<!-- ?根元素: lang 页面语言 -->
<html lang="zh-CN">
<!-- 头元素: 页面描述,供浏览器或搜索引擎解析时参考 -->
<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>html 小结</h1>
<img src="xxx.jpg" alt="" />
<!-- 单标签: 通常用于引用外部资源
双标签: 内容来自开发者提供 -->
</body>
</html>