Blogger Information
Blog 15
fans 0
comment 0
visits 6245
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown和html的初体验
啊℃。㏄
Original
420 people have browsed it

VSCODE编辑器

插件 描述
Better Comments 自定义注释颜色
Dracula Official 吸血鬼主题
Live Server html实时预览
markdown preview Enhanced markdown实时预览
JetBrains Mono 等宽字体,免费

markdown语法

1.标题

  1. # -> html标签的<h1>,一级标题
  2. ## -> html标签的<h2>,二级标题
  3. ### -> html标签的<h3>,三级标题
  4. #### -> html标签的<h4>,四级标题
  5. ##### -> html标签的<h5>,五级标题

2.列表

2.1无序列表 (-)

  • text1
  • text2
  • text3
    • text3.1
    • text3.2

2.2有序列表 (1. )

  1. text1
  2. text2
  3. text3
    1. text3.1
    2. text3.2

3.代码 (`,```)

  1. 单行: const box = document.querySelector('#box')
  2. 多行:
    1. namespace core;
    2. class Demo
    3. {
    4. // ...
    5. }

4.表格( | - )

id name email salary
1 张老师 zhang@qq.com 124564
2 朱老师 zhu@qq.com 1515615
3 李老师 li@qq.com 5454455757

5.图片

语法: 图片说明

你好

链接:(< >)

个人博客:https://www.php.cn/blog/llc123.html

HTML文档描述

序号 名称 描述
1 结构化 像一根倒置的“树”,从根到叶子,具有明显的层次
2 DOM html结构使用“文档对象模型”来描述(docuemt bojet model
3 元素 html文档中的元素,如根节点,头部,主体等,使用<标签>来描述
4 标签 用来描述元素,通常具有一定语义,例如<head>,<body>,也有通用无语义的,如<div><spam>
5 属性 描述元素特征或行为,写在标签/起始标签中,如<meta charset="UTF-8">
6 html 文档大小写不敏感,<BODY><body>完全没有区别,但推荐全部小写,除约定外(<UTF-8>)

html标签注释

  1. <!--文档类型-->
  2. <!DOCTYPE html>
  3. <!--根元素-->
  4. <html lang="zh-cn">
  5. <!--根元素只有两个子元素-->
  6. <!--头元素:页面中不可见,用户看不到,也不在乎-->
  7. <head>
  8. <!--元标签-->
  9. <meta charset="UTF-8">
  10. <!--兼容-->
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  12. <!--适配移动端-->
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <!--标题页面:显示在浏览器标签页-->
  15. <title>页面</title>
  16. </head>
  17. <!--主体元素:页面实际显示的内容,也是开发重点和用户真正关注的部分-->
  18. <body>
  19. <!--标题元素,用<h1></h1>标签来表示-->
  20. <h1>hello word</h1>
  21. </body>
  22. </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