Blogger Information
Blog 6
fans 0
comment 0
visits 3174
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4.2日课程认识
A
Original
398 people have browsed it

对前端基础的认知

昨天晚上老师主要对前端页面的组成和头部文件还有html的设计思想做了详细的介绍

页面头部文件是对一个网站的的基本介绍,里面包含了标题及网页简介以及网页的一些基本设置

页面组成主要通过文本内容,外部资源和标记这三部分组成

文本内容:用户能够看到的网页文本
外部资源:通过外部引入的一些资源,例如图片,视频,音频等
标记:对文本以及引用文件的正确描述


头部文件介绍

  1. <!DOCTYPE html>
  2. <!-- 网站语言 -->
  3. <html lang="en">
  4. <!-- 网站头部文件 -->
  5. <head>
  6. <!-- 网站字符集 -->
  7. <meta charset="UTF-8">
  8. <!-- 网站宽度设置 -->
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <!-- 网站标题 -->
  11. <title>这里是标题</title>
  12. </head>
  13. <!-- 网站主体部分,也是用户直视化部分 -->
  14. <body>
  15. <!-- 这里是页面内容 -->
  16. </body>
  17. </html>

代码及文件命名规范

  1. 前端代码统一按照小写字符为标准
  2. 前端坚持使用连接线`-`
  3. 文件名称统一使用小写
  4. php代码连接用下划线或者使用驼峰命名法

URL的释义

  1. 简单来说url就是一个能让用户访问网站或者文件的一个链接
  2. 绝对url:一个将服务器上某个文件精确直观的访问到的url
  3. 相对url:本身的文件位置为参考点,描述目标文件的位置
  4. ../ 代表上级目录
  5. / 代表根目录
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