diff options
author | pululin <pululin369@hotmail.com> | 2021-05-31 13:19:14 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-05-31 15:42:32 +0800 |
commit | ea0acfeded7d0b1408325c83b504fa0b23d8506d (patch) | |
tree | 445b3eb937d9ce03799a02d4ccf5f18300488c04 /files/zh-cn/learn/html | |
parent | d4625fc3adef7da9a077b195800094d03488c50c (diff) | |
download | translated-content-ea0acfeded7d0b1408325c83b504fa0b23d8506d.tar.gz translated-content-ea0acfeded7d0b1408325c83b504fa0b23d8506d.tar.bz2 translated-content-ea0acfeded7d0b1408325c83b504fa0b23d8506d.zip |
fix missing title attribute
The title attribute is missing in the example that introduces the title attribute
Diffstat (limited to 'files/zh-cn/learn/html')
-rw-r--r-- | files/zh-cn/learn/html/introduction_to_html/creating_hyperlinks/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/html/introduction_to_html/creating_hyperlinks/index.html b/files/zh-cn/learn/html/introduction_to_html/creating_hyperlinks/index.html index 63ad5724ad..6cd8ad3a68 100644 --- a/files/zh-cn/learn/html/introduction_to_html/creating_hyperlinks/index.html +++ b/files/zh-cn/learn/html/introduction_to_html/creating_hyperlinks/index.html @@ -63,7 +63,7 @@ translation_of: Learn/HTML/Introduction_to_HTML/Creating_hyperlinks <p><span class="short_text" id="result_box" lang="zh-CN"><span>结果如下(当鼠标指针悬停在链接上时,标题将作为提示信息出现):</span></span></p> -<p>我创建了一个指向 <a href="https://www.mozilla.org/zh-CN/">Mozilla 主页</a> 的超链接。</p> +<p>我创建了一个指向 <a href="https://www.mozilla.org/zh-CN/" title="了解 Mozilla 使命以及如何参与贡献的最佳站点。">Mozilla 主页</a> 的超链接。</p> <div class="note"> <p>注意:链接的标题仅当鼠标悬停在其上时才会显示,这意味着使用键盘来导航网页的人很难获取到标题信息。如果标题信息对于页面非常重要,你应该使用所有用户能都方便获取的方式来呈现,例如放在常规文本中。</p> |