Blogger Information
Blog 13
fans 0
comment 0
visits 6518
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML标签
shooter
Original
414 people have browsed it

markdown 语法(一个#为一级标题,两个#为二级标题,以此类推)

一级标题

二级标题

三级标题

四级标题

五级标题

列表:

无序列表

  • AAA1
  • AAA2
  • AAA3
    • AAA1
    • AAA2
    • AAA3

有序列表

  1. AAA1
  2. AAA2
  3. AAA3
    1. AAA2-1
    2. AAA2-2
    3. AAA2-3

代码

  1. 单行:echo ‘hello word’;
  2. 多行:
    1. namespace core;
    2. class Demo
    3. {
    4. // ...
    5. }

表格:

id name sex age email add
1 张三 18 zhangsan@qq.com 上海
2 李四 20 lisi@qq.com 北京
3 王五 22 wangwu@qq.com 深圳

图片:

语法: 图片说明
嘿嘿

链接:

第 19 期: https://www.php.cn/course/1382.html

HTML

  1. <!-- !文档类型 -->
  2. <!DOCTYPE html>
  3. <!-- ?根元素: lang 页面语言 -->
  4. <html lang="zh-CN">
  5. <!-- 头元素: 页面描述,供浏览器或搜索引擎解析时参考 -->
  6. <head>
  7. <!-- //元标签meta: charset 默认字符集,utf8可表示世界上几乎所有已知语言字符 -->
  8. <meta charset="UTF-8" />
  9. <!-- 浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无,现在微软也采用了Chrome内核啦 -->
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  11. <!-- *视口适配控制: 极其重要,这涉及到三个"视口"类型之间的转换与适配,后面讲到移动端布局更细说 -->
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  13. <!-- 页面标题: 显示在浏览器标签页,用于描述页面信息 -->
  14. <title>Document</title>
  15. <!-- 引入外部样式表 -->
  16. <link rel="stylesheet" href="style.css" />
  17. <!-- 引入外部脚本 -->
  18. <script src="outer.js"></script>
  19. </head>
  20. <!-- 主体元素: 页面实际显示的内容,也是开发重点和用户真正关注的部分 -->
  21. <body>
  22. <!--标题标签-->
  23. <h1>标题</h1>
  24. <!--图片标签-->
  25. <img src="xxx.jpg" alt="" />
  26. <!-- 单标签: 通常用于引用外部资源
  27. 双标签: 内容来自开发者提供 -->
  28. </body>
  29. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!