Blogger Information
Blog 10
fans 0
comment 0
visits 8122
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
md常用语法和html语义化结构元素
php还在初学
Original
691 people have browsed it

md常用语法和htm语义化结构元素

php中文网的第一课

md常用语法

段落


这里面是一个段落

列表

有序的列表
1.每天坚持学习php
2.每天坚持学习php
3.每天坚持学习php

无序的列表

  • 前端课程
    • html
    • css
    • javapscript
  • 后端课程
    • php

引用

引用事例


单行代码

·<?php echo ‘php我来了’; ?>·

多行代码

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>多行html代码</title>
  5. </head>
  6. <body>
  7. 这个是一个html代码
  8. </body>
  9. </head>
  10. </html>

链接

php 中文网
百度

php 中文网https://www.php.cn
https://www.php.cn

图片

tp6

表格

id 物料代码 物料名称 规格型号 数量 单价 金额
1 01 电脑 联想 2 5000 10000
2 02 手机 华为 5 5000 25000

语义化结构元素

常用标签

序号 标签 名称 描述
1 <h1>-<h6> 标题 通常用来划分或标注内容中的文本段落
2 <header> 页眉 一般是由导航, logo 等元素组成
3 <footer> 页脚 一般是由友情链接,联系方式,备案号,版权等信息组成
4 <nav> 导航 导航通常是由一个或多个链接标签<a>标签组成
5 <main> 主体 展示页面主体内容,建议一个页面,只出现一次
6 <article> 文档 本义是文档, 实际上可以充当其它内容的容器
7 <aside> 边栏 与主体无关的信息(广告位, 相关推荐, 阅读排行等)
8 <section> 区块 文档或主体中的通用小组件
9 <div> 容器 本身无任何语义,通过它的属性来描述用途

代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>元素标签与属性</title>
  7. <link rel="stylesheet" href="css/demo1.css" />
  8. </head>
  9. <body>
  10. <!-- 页眉 -->
  11. <header>
  12. <h1>&lt;header&gt;</h1>
  13. </header>
  14. <div class="container">
  15. <!-- 边栏 -->
  16. <aside>
  17. <h1>&lt;header&gt;</h1>
  18. </aside>
  19. <!-- 主体区 -->
  20. <main>
  21. <h1>&lt;main&gt;</h1>
  22. <div>
  23. <section>
  24. <h1>&lt;section&gt;</h1>
  25. </section>
  26. <section>
  27. <h1>&lt;section&gt;</h1>
  28. </section>
  29. </div>
  30. </div>
  31. </main>
  32. <!-- 页脚 -->
  33. <header>
  34. <h1>&lt;footer&gt;</h1>
  35. </header>
  36. </body>
  37. </html>
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