-
Notifications
You must be signed in to change notification settings - Fork 2
/
2.texts, formatting and quotation.html
83 lines (69 loc) · 2.62 KB
/
2.texts, formatting and quotation.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!--this is a comment-->
<p title="this is a text">hello world</p>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<article>
<h1>this is a heading</h1>
<p>
There are many variations of passages of Lorem Ipsum
available,<br />
but the majority have suffered alteration in some form,<br />
by injected humour, or randomised words which don't look even
slightly believable.
</p>
<h5>written by ...</h5>
</article>
<hr />
<pre>
There are many variations of
passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even slightly believable.
</pre
>
<hr />
<p>this is a <b>Bold</b> text</p>
<p>this is a <strong>Important text</strong></p>
<p>this is a <i>Italic</i> text</p>
<p>this is a <em>Emphasized</em> text</p>
<p>this is a <mark>Marked</mark> text</p>
<p>this is a <small>Smaller</small> text</p>
<p>this is a <del>Deleted</del> text</p>
<p>this is a <ins>Inserted</ins> text</p>
<p>this is a <sub>Subscript</sub> text</p>
<p>this is a <sup>Superscript</sup> text</p>
<hr />
<p>Here is a quote from WWF's website:</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>
<p>Here is a quote <q>from WWF's website</q>:</p>
<p>
The <abbr title="World Health Organization">WHO</abbr> was founded
in 1948.
</p>
<address>
Written by John Doe.<br />
Visit us at:<br />
Example.com<br />
Box 564, Disneyland<br />
USA
</address>
</body>
</html>