In this section we will go through the <blockquote>,<q>, <abbr>, <address>, <cite>, and <bdo> HTML components.
<!DOCTYPE html>
<html>
<body>
<p>Here is a statement from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For a long time, WWF has attempted to assist individuals and nature with flourishing. As the world's driving preservation association, WWF works in almost 100 nations. At each level, we team up with individuals all over the planet to create and convey imaginative arrangements that safeguard networks, natural life, and the spots where they live.
</blockquote>
</body>
</html>
HTML <blockquote> for Citations
The HTML <blockquote> component characterizes a segment that is cited from another source.
Programs normally indent <blockquote> components.
<!DOCTYPE html>
<html>
<body>
<p>Here is a statement from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For a long time, WWF has attempted to assist individuals and nature with flourishing. As the world's driving preservation association, WWF works in almost 100 nations. At each level, we team up with individuals all over the planet to create and convey imaginative arrangements that safeguard networks, natural life, and the spots where they live.
</blockquote>
</body>
</html>
HTML <q> for Short Citations
The HTML <q> tag characterizes a short citation.
Programs regularly embed quotes around the citation.
<!DOCTYPE html>
<html>
<body>
<p>Browsers generally embed quotes around the q element.</p>
<p>WWF will probably: <q>Build a future where individuals reside together as one with nature.</q></p>
</body>
</html>
0 Comments