-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotations.html
33 lines (30 loc) · 1.48 KB
/
quotations.html
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
<!DOCTYPE html>
<html>
<head>
<title>Html Basics </title>
</head>
<body>
<!--<q> tag defines the short quotation in html-->
<p><q> paragraph is a self-contained unit of discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</q></p>
<!--<blockquote> tag defines a element that is quoted from another source. in html-->
<p>This is quotation from WWF website:</p>
<blockquote cite="https://wordwidelife.org/who/quotations.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>
<!--<abbr> tag in html Marking abbreviations can give useful information to browsers, translation systems and search-engines.-->
<p>The<abbr title="World Heath Organization"> who</abbr> was founded in in 1948</p>
<!--<address> tag yo can give your contactNo or your social Media account in html-->
<address>
https://www.instagram.com/ayub.683<br>
</address>
<!--<cite> tag shows the title of your creatve work in html-->
<cite>Deep Blue Sea 2
</cite>
<!--<bdo> bidirectional overide tag direction of text in html-->
<bdo dir="rtl">Deep blue sea</bdo>
</body>
</html>