Thẻ trích dẫn
Ta sử dụng thẻ <blockquote>
1 2 3 4 5 6 7 |
<code><!DOCTYPE html> <html> <body> <p>Browsers usually indent blockquote elements.</p> <blockquote cite="http://www.worldwildlife.org/who/index.html"> For nearly 60 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by more than one million members in the United States and close to five million globally. </blockquote> </body> </html></code> |
Thẻ <q>
Sử dụng cho đoạn trích dẫn ngắn
1 2 3 4 5 6 7 |
<code><!DOCTYPE html> <html> <body> <p>Browsers usually insert quotation marks around the q element.</p> <p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p> </body> </html></code> |
Thẻ <abbr>
Thẻ <abbr>
được sử dụng để mô tả một từ là viết tắt của một từ nào đó.
1 2 3 4 5 6 |
<code><!DOCTYPE html> <html> <body> <p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p> <p>Marking up abbreviations can give useful information to browsers, translation systems and search-engines.</p> </body> </html></code> |
Thẻ <address>
Thẻ <address> được sử dụng để cung cấp thông tin liên hệ của tác giả, chủ sở hữu của một tài liệu hoặc một bài viết.
1 2 3 4 5 6 7 |
<code><!DOCTYPE html> <html> <body> <p>The HTML address element defines contact information (author/owner) of a document or article.</p> <address> Written by John Doe.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> </body> </html></code> |