-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuotation_citation.html
38 lines (33 loc) · 970 Bytes
/
Quotation_citation.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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Quotation and Citation Elements</title>
</head>
<body>
<p>This is the use of blackquote tag</p>
<blockquote cite="https://ritikdh440.github.io/">
This Element defines a section that is quoted from another source.Browser
usually indent the elements inside the tag.
<p style="font-size: 50px">
Here this a quote by Ritik Dhiman -
<q style="color: rgb(192, 0, 209)"
><mark
>It does not matter how much knowledge you gain, but it matters how
much you spread</mark
></q
>
</p>
</blockquote>
<p>
This is abbreviations tag
<abbr title="Hypertext Markup languag" e>HTML</abbr> is used for creating
webpages
</p>
<h4>This the Address tag</h4>
<address>
V.P.O REHAN TEHSIL FATEHPUR<br>
DISTRICT KANGRA <br>
HIMACHAL PRADESH PIN-176022
</address>
</body>
</html>