Blogger Information
Blog 8
fans 0
comment 0
visits 5785
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown基础语法
无声胜有声丶
Original
596 people have browsed it

markdown的基础语法

1.段落

html
css
php


2.列表

有序列表

  1. html
  2. php
  3. css

    无序列表

  • 前端
    • html
    • css
  • 后端
    • php
    • java

3.引用

认真学习前端和后端
让自己不在成为一个it菜鸟


4.代码段

单行代码

<div class="name">

多行代码

  1. <!DOCTYPE html>
  2. <body>
  3. <div class="name">
  4. <p>认真学习</p>
  5. </div>
  6. </body>

5.链接

百度https://www.baidu.com


6.图片

图片


7.表格

名称 价格 单位 合计
手机 2000 2台 4000
电脑 4000 1台 4000
相机 5000 1台 5000

语义化结构元素

语义化:就是只要你看见这个标签就能知道里面的内容.这样更能让我们区分

  1. <body>
  2. <!-- 页眉 -->
  3. <header>
  4. <a href="">首页</a>
  5. <a href="">视频教程</a>
  6. <a href="">入门教程</a>
  7. </header>
  8. <!-- 主体 -->
  9. <main>
  10. <div>前端开发</div>
  11. <div>后端开发</div>
  12. <div>数据库</div>
  13. </main>
  14. <!-- 页脚 -->
  15. <footer>
  16. <a href="">HTML视频</a>
  17. <a href="">HTML代码</a>
  18. <a href="">HTML手册</a>
  19. </footer>
  20. </body>
Correcting teacher:天蓬老师天蓬老师

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