-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path07.quotations.html
More file actions
43 lines (35 loc) · 1.49 KB
/
07.quotations.html
File metadata and controls
43 lines (35 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!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>
<!-- The HTML <q> element defines a short quotation. -->
<p>Browsers usually indent blockquote elements.</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
<!-- The HTML <blockquote> element defines a section that is quoted from another source. -->
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<address>
My Address:<br>
At Post-Devgad-Sainathwadi<br>
Tal-Devgad<br>
Dist-Sindhudurg<br>
Pin-416613
</address>
<!-- The HTML <address> element defines contact information (author/owner) of a document or an article.
The <address> element is usually displayed in italic. Most browsers will add a line break before and after the element. -->
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>
<!-- The HTML <cite> element defines the title of a work.
Browsers usually display <cite> elements in italic. -->
<bdo dir="rtl">This line will be written from right to left</bdo>
<!-- The HTML <bdo> element defines bi-directional override.
The <bdo> element is used to override the current text direction: -->
</body>
</html>