Blogger Information
Blog 6
fans 0
comment 0
visits 3460
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
9月28日作业
swx
Original
500 people have browsed it

1、标题

一个文档应该只有一个大标题 #

二级标题

三级标题


段落
html是超文本标记语言
markdown是超轻量级标记语言


2、列表

有序列表

  1. 上午11点开会
  2. 中午12点午休
  3. 下午16点下班

无序列表

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

3、引用

PHP即“超文本预处理器”,是一种通用开源脚本语言。
PHP是在服务器端执行的脚本语言,与C语言类似,是常用的网站编程语言。
PHP独特的语法混合了C、Java、Perl以及 PHP 自创的语法。利于学习,使用广泛,主要适用于Web开发领域。


4、代码块

单行代码
<?php echo 'hello php!'?>

多行代码

  1. <!doctype html>
  2. <html>
  3. <head></head>
  4. <body></body>
  5. </html>
  1. $name='admin';
  2. echo $name;

5、链接

只显示链接文本

php 中文网

全显示

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

只显示链接

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


6、图片

php 爬虫采集


7、表格

id 品名 单价 单位 数量 金额
1 电脑 5000 3 15000
2 手机 3000 3 9000

语义化结构元素


  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <!-- 页眉 -->
  9. <header>
  10. <h1>&lt;header&gt;</h1>
  11. </header>
  12. <div class="container">
  13. <!-- 边栏 -->
  14. <aside>
  15. <h1>&lt;aside&gt;</h1>
  16. </aside>
  17. <!-- 主体区 -->
  18. <main>
  19. <h1>&lt;main&gt;</h1>
  20. <div>
  21. <section>
  22. <h1>&lt;section&gt;</h1>
  23. </section>
  24. <section>
  25. <h1>&lt;section&gt;</h1>
  26. </section>
  27. </div>
  28. </main>
  29. </div>
  30. <!-- 页脚 -->
  31. <header>
  32. <h1>&lt;footer&gt;</h1>
  33. </header>
  34. </body>
  35. </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