From 5bc8280ed48c595a229ce4590f9e053f62042196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=AF=A1?= <1849613717@qq.com> Date: Fri, 17 Sep 2021 17:22:10 +0800 Subject: [PATCH] =?UTF-8?q?HTML=20=E8=AF=AD=E4=B9=89=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index fd34704..ac3fe4d 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ - [垃圾回收](#垃圾回收) - [Promise](#Promise) - [HTML](#html) + - [HTML 语义化](#HTML-语义化) - [CSS](#css) - [Flex](#flex) - [Grid](#grid) @@ -281,6 +282,16 @@ Promise 是由社区最早提出和实现的异步编程的一种解决方案。 ### HTML +#### HTML 语义化 + +html 语义化就是让页面的内容结构化,便于对浏览器、搜索引擎解析。在没有引入样式 CCS 样式的时候也能以一种可以分辨出来大致表示内容的文档格式显示,并且是容易阅读的。 搜索引擎的爬虫依赖于标记来确定上下文和各个关键字的权重,利于 SEO。 使阅读源代码的人对网站更容易将网站分块,便于阅读维护理解。 + +- [ ] 文档 + - [ ] [HTML 中的语义](https://developer.mozilla.org/en-US/docs/Glossary/Semantics#semantics_in_html) +- [ ] 推荐文章 + - [ ] [IFE-NOTE:页面结构语义化](https://rainylog.com/post/ife-note-1/) + - [ ] [关于 HTML 语义和前端架构](http://nicolasgallagher.com/about-html-semantics-front-end-architecture/) + ### CSS #### CSS 盒子模型