Blogger Information
Blog 46
fans 0
comment 0
visits 34413
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown的实例演示及html中每一个标签的功能
上草一方
Original
576 people have browsed it

作业一

已安装的插件

作业二

  1. ## 1.标题
  2. 写法:
  3. # 一级标题
  4. ## 二级标题
  5. ### 三级标题
  6. #### 四级标题
  7. ##### 五级标题
  8. ## 2.列表
  9. ### 2.1 无序列表
  10. - item1
  11. - item2
  12. - item3
  13. --subItem3-1
  14. --subItem3-2
  15. --subItem3-3
  16. ### 2.2 无序列表
  17. 1. item1
  18. 2. item2
  19. 3. item3
  20. 1.subItem3-1
  21. 2.subItem3-2
  22. 3.subItem3-3
  23. ## 3.代码
  24. 1.单行:const box = document.querySelect('#box')
  25. 2.多行
  26. ```php
  27. namespace core;
  28. class Demo
  29. {
  30. //……
  31. }

4.表格

id name email salary
1 张三 zhangsan@qq.com ¥8956
2 李四 lisi@qq.com ¥12567
3 王五 wangwu@qq.com ¥22587

作业三

文档类型(指的是下面)

<!DOCTYPE html>

根元素,lang是页面语言

<html lang="en">

头元素:页面描述,供浏览器或搜索引擎解析时参考
<head>

元标签meta:charset默认字符串,uft8可表示世界上几乎所有已知语言
<meta charset="UTF-8">

浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无
<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>

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