HTML使用的引用格式。
![](https://img.haomeiwen.com/i21922576/6f289cdd2a4b297b.png)
引用 <blockquote>
HTML <blockquote>
元素定义了从其他来源引用的部分。浏览器通常会缩进 <blockquote>
元素。
例如:
<p>Here is a quote from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 60 years, WWF has worked to help people and nature thrive. As the world's leading conservation organization, WWF works in nearly 100 countries. At every level, we collaborate with people around the world to develop and deliver innovative solutions that protect communities, wildlife, and the places in which they live.
</blockquote>
![](https://img.haomeiwen.com/i21922576/02c4b5b23f978f6c.png)
短引用 <q>
HTML <q>
标签定义了一个简短的引语。浏览器通常会在引语周围插入引号。
例如
<p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>
![](https://img.haomeiwen.com/i21922576/9527296b6d30e095.png)
缩写 <abbr>
HTML <abbr>
标签定义了缩写或首字母缩写,如 "HTML", "CSS", "Mr.", "Dr.", "ASAP", "ATM"。标记缩写可以为浏览器、翻译系统和搜索引擎提供有用的信息。当鼠标移到元素上时,使用全局标题属性显示缩写/首字母缩略词的描述。
例如:
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
![](https://img.haomeiwen.com/i21922576/f3da80fc982f0b67.png)
联系信息 <address>
HTML <address>
标签定义了文档或文章作者/所有者的联系信息。联系信息可以是电子邮件地址、URL、实际地址、电话号码、社交媒体账号等。<address>
元素中的文本通常以斜体显示,浏览器总是会在 <address>
元素前后添加换行符。
例如:
<address>
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
![](https://img.haomeiwen.com/i21922576/3ba05cec18ab93ba.png)
作品标题 <cite>
HTML <cite>
标签定义了创意作品的标题(例如一本书、一首诗、一首歌、一部电影、一幅画、一幅雕塑等)。注:人名不是作品的标题。元素中的文本<cite>
通常以斜体呈现。
例如:
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>
![](https://img.haomeiwen.com/i21922576/45416ab8f6d5fbdf.png)
双向覆盖书写 <bdo>
BDO 代表 Bi-Directional Override。HTML <bdo>
标记用于将文字的方向变反。
例如:
<bdo dir="rtl">This text will be written from right to left</bdo>
![](https://img.haomeiwen.com/i21922576/3facb14f2fcc151e.png)
网友评论