Blogger Information
Blog 1
fans 0
comment 0
visits 489
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4.2作业
曹小艺
Original
489 people have browsed it

htm基础

1.网页的组成

·文本内容:用户看到的文字,包括英文
·其他资源的引用:图片类型,视频文件,音频文件
·标记:对文本的/其它资源的描述
·标记会对“其他资源的引用”进行引用

2.html的设计思想

·html 文档都是都是用”<>” 标签实现的
·标签就类似于商品的贴标,解释该产品
·页面中的不同的内容需要用不同的标题进行描述
·html是超文本标记语言,不是编程语言

3.基础的html页面及含义

  1. <!DOCTYPE html>
  2. <!--描述该文件是html:5-->
  3. <html lang="en">
  4. <!--描述该文件语言使用英语-->
  5. <head>
  6. <meta charset="UTF-8" />
  7. <!--使用全球最全的字符集-->
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  9. <!--定义可视框的大小内容-->
  10. <title>HTML5页面结构</title>
  11. <!--浏览器的头部显示内容-->
  12. </head>
  13. <body>
  14. <!-- 页面主体内容 -->
  15. <h2>PHP中文网欢迎您...</h2>
  16. </body>
  17. </html>

4. 元素,属性与值、其它

4.1 元素

  1. 元素:包括非空元素、元素
  2. 不可空缺内容的叫非空元素,比如成对的<P>标签,img标签里的图片内容可有可无
  3. 标签:双标签、单标签:成对的是双,单独的是单。

4.1.1

·感觉朱老师吧专业名词已经讲得清晰了,比喻修辞都用上了。剩下的课件太多了,不想写啊。纸办的手写也有了。

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