markdowm 练习
1 标题
一级
区块
区块
二级
三级
四级
五级
六级
2 段落
段后两个空格 行吗?是不行的
换行我是知道的
3 文本
IIIIIIII
AAAAA
4 分隔条
<!-- === -->
<!-- *** -->
很多种分隔 一保存就格式化了 —-
5 列表
- 点后要有空格啊
- 没有不去干活
- 真是的
- 这后边也有空格
- 毛病都一样
- 两空格在前,一空格在后
- 空格就是天地啊
- 好玩的空格 还是 Obsidian 和 HbuilderX 好用
- vs 的默认不自动加头
6 引用
一直在用
- 内部列表
- 哈哈哈 2
- 哈哈哈 3
- 哈哈哈
7 代码
<?php $name = 'my god!'?>
<html><body><div><h1>hello World!</h1></div></body></html>
<html>
<body>
<div>
<h1>hello World!</h1>
</div>
</body>
</html>
8 链接
l love php 中文网
l love php 中文网https://php.cn
https://php.cn
9 图片
10 表格
id | name | password |
---|---|---|
1 | peter | 123 |
2 | alt shift | down |
3 | alt shift | down |
11 结构元素
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>结构元素</title>
<link rel="stylesheet" href="css/demo1.css" />
</head>
<body>
<header>
<h1><header></h1>
<nav>
<a href="#">html</a>
<a href="#">css</a>
<a href="#">js</a>
<a href="#">php</a>
</nav>
</header>
<div class="container">
<aside>
<h1><aside></h1>
</aside>
<main>
<h1><main></h1>
<article>
<h1><article></h1>
<p>article write line 1</p>
<p>article write line 2</p>
<p>article write line 3</p>
</article>
<div>
<section><section></section>
<section><section></section>
</div>
</main>
</div>
<footer>
<h1><header></h1>
</footer>
</body>
</html>