diff options
author | zhongjunma <68845504+zhongjunma@users.noreply.github.com> | 2022-03-11 01:33:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 01:33:21 +0800 |
commit | 37949c8719dbef82d686266fb6268ca28375b27e (patch) | |
tree | 93571a5c630b69239491832175c500707c96a9a2 /files/zh-cn/learn | |
parent | 72efabe129dc17863e6b221abf14b9ac9b51cca7 (diff) | |
download | translated-content-37949c8719dbef82d686266fb6268ca28375b27e.tar.gz translated-content-37949c8719dbef82d686266fb6268ca28375b27e.tar.bz2 translated-content-37949c8719dbef82d686266fb6268ca28375b27e.zip |
fix period (#4512)
Change "`<head>元素`." to "`<head>`元素。"
Diffstat (limited to 'files/zh-cn/learn')
-rw-r--r-- | files/zh-cn/learn/html/introduction_to_html/getting_started/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/html/introduction_to_html/getting_started/index.html b/files/zh-cn/learn/html/introduction_to_html/getting_started/index.html index 70eeac7352..51d207941d 100644 --- a/files/zh-cn/learn/html/introduction_to_html/getting_started/index.html +++ b/files/zh-cn/learn/html/introduction_to_html/getting_started/index.html @@ -435,7 +435,7 @@ translation_of: Learn/HTML/Introduction_to_HTML/Getting_started "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></pre> 然而这种写法已经过时了,这些内容已成为历史。只需要知道 <code><!DOCTYPE html></code> 是最短有效的文档声明。</li> <li><code><html></html></code>: <code><html></code>元素。这个元素包裹了整个完整的页面,是一个根元素。</li> - <li><code><head></head></code>: <code><head>元素</code>. 这个元素是一个容器,它包含了所有你想包含在HTML页面中但不想在HTML页面中显示的内容。这些内容包括你想在搜索结果中出现的关键字和页面描述,CSS样式,字符集声明等等。以后的章节能学到更多关于<head>元素的内容。</li> + <li><code><head></head></code>: <code><head></code>元素。这个元素是一个容器,它包含了所有你想包含在HTML页面中但不想在HTML页面中显示的内容。这些内容包括你想在搜索结果中出现的关键字和页面描述,CSS样式,字符集声明等等。以后的章节能学到更多关于<head>元素的内容。</li> <li><code><meta charset="utf-8"></code>: 这个元素设置文档使用utf-8字符集编码,utf-8字符集包含了人类大部分的文字。基本上他能识别你放上去的所有文本内容。毫无疑问要使用它,并且它能在以后避免很多其他问题。</li> <li><code><title></title></code>: 设置页面标题,出现在浏览器标签上,当你标记/收藏页面时它可用来描述页面。</li> <li><code><body></body></code>: <code><body></code>元素。 包含了你访问页面时所有显示在页面上的内容,文本,图片,音频,游戏等等。</li> |