aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalaaaa <37627837+Malaaaa@users.noreply.github.com>2022-03-08 03:11:23 -0500
committerGitHub <noreply@github.com>2022-03-08 16:11:23 +0800
commit640955445c8389c55b2868aa8423292d2077d532 (patch)
tree3382e00a0f5234a2fd0a9e438488833f4f4f733c
parentd53bae971e455859229bcb3246e29bcbc85179d2 (diff)
downloadtranslated-content-640955445c8389c55b2868aa8423292d2077d532.tar.gz
translated-content-640955445c8389c55b2868aa8423292d2077d532.tar.bz2
translated-content-640955445c8389c55b2868aa8423292d2077d532.zip
deleting "index.html" in some links (#4432)
* fix some links by deleting index.html * fix web description error the description text is different with the image shows
-rw-r--r--files/zh-cn/learn/getting_started_with_the_web/how_the_web_works/index.html4
-rw-r--r--files/zh-cn/learn/html/introduction_to_html/the_head_metadata_in_html/index.html9
2 files changed, 7 insertions, 6 deletions
diff --git a/files/zh-cn/learn/getting_started_with_the_web/how_the_web_works/index.html b/files/zh-cn/learn/getting_started_with_the_web/how_the_web_works/index.html
index aa5a97b3e7..fb4631e8bc 100644
--- a/files/zh-cn/learn/getting_started_with_the_web/how_the_web_works/index.html
+++ b/files/zh-cn/learn/getting_started_with_the_web/how_the_web_works/index.html
@@ -89,12 +89,12 @@ translation_of: Learn/Getting_started_with_the_web/How_the_Web_works
<h2 id="解析组成文件的顺序">解析组成文件的顺序</h2>
-<p>当浏览器向服务器发送请求获取 HTML 文件时,HTML 文件通常包含 "link" 和 "script" 元素,这些元素分别指向了外部的 <a href="../../css/index.html">CSS</a> 样式表文件和 <a href="../../javascript/index.html">JavaScript</a> 脚本文件。了解这些文件被<a href="../../../web/performance/how_browsers_work/index.html">浏览器解析</a>的顺序是很重要的:</p>
+<p>当浏览器向服务器发送请求获取 HTML 文件时,HTML 文件通常包含 "link" 和 "script" 元素,这些元素分别指向了外部的 <a href="../../css">CSS</a> 样式表文件和 <a href="../../javascript">JavaScript</a> 脚本文件。了解这些文件被<a href="../../../web/performance/how_browsers_work">浏览器解析</a>的顺序是很重要的:</p>
<ul>
<li>浏览器首先解析 HTML 文件,并从中识别出所有的 "link" 和 "script" 元素,获取它们指向的外部文件的链接。</li>
<li>继续解析 HTML 文件的同时,浏览器根据外部文件的链接向服务器发送请求,获取并解析 CSS 文件和 JavaScript 脚本文件。</li>
- <li>接着浏览器会给解析后的 HTML 文件生成一个 <a href="../../../web/api/document_object_model/index.html">DOM</a> 树(在内存中),会给解析后的 CSS 文件生成一个 <a href="../../../glossary/cssom/index.html">CSSOM</a> 树(在内存中),并且会<a href="../../../web/performance/how_browsers_work/index.html">编译和执行</a>解析后的 JavaScript 脚本文件。</li>
+ <li>接着浏览器会给解析后的 HTML 文件生成一个 <a href="../../../web/api/document_object_model">DOM</a> 树(在内存中),会给解析后的 CSS 文件生成一个 <a href="../../../glossary/cssom">CSSOM</a> 树(在内存中),并且会<a href="../../../web/performance/how_browsers_work">编译和执行</a>解析后的 JavaScript 脚本文件。</li>
<li>伴随着构建 DOM 树、应用 CSSOM 树的样式、以及执行 JavaScript 脚本文件,浏览器会在屏幕上绘制出网页的界面;用户看到网页界面也就可以跟网页进行交互了。</li>
</ul>
diff --git a/files/zh-cn/learn/html/introduction_to_html/the_head_metadata_in_html/index.html b/files/zh-cn/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
index a5c51b3ff8..f6a176d75b 100644
--- a/files/zh-cn/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
+++ b/files/zh-cn/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
@@ -135,10 +135,11 @@ started with developing web sites and applications."&gt;</pre>
<ol>
<li>访问 <a href="https://developer.mozilla.org/zh-CN/">MDN Web Docs</a>。</li>
<li>查看网页源代码(<em>通过鼠标右键点击网页在弹出的菜单中选择[查看网页源代码]</em>)</li>
- <li>找到description的meta标签。就和如下展示的这样:
- <pre class="brush: html notranslate">&lt;meta name="description" content="The Mozilla Developer Network (MDN) provides
-information about Open Web technologies including HTML, CSS, and APIs for both
-Web sites and HTML5 Apps. It also documents Mozilla products, like Firefox OS."&gt;</pre>
+ <li>找到description的meta标签。就和如下展示的这样:+
+ <pre class="brush: html notranslate">&lt;meta name="description" content="The MDN Web Docs site
+ provides information about Open Web technologies
+ including HTML, CSS, and APIs for both Web sites and
+ progressive web apps."&gt;</pre>
</li>
<li>现在,在你喜欢的搜索引擎里搜索“MDN Web Docs” (下图展示的是在谷歌搜索里的情况) 。你会看到description <code>&lt;meta&gt;</code> and <code>&lt;title&gt;</code> 元素如何在搜索结果里显示— 很值得这样做哦!</li>
</ol>