-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.html
More file actions
70 lines (70 loc) · 3.12 KB
/
text.html
File metadata and controls
70 lines (70 loc) · 3.12 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
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
<html>
<body>
<h1>This is a Main Heading</h1>
<h2>This is a Level 2 Heading</h2>
<h3>This is a level 3 Heading</h3>
<h4>This is a level 4 Heading</h4>
<h5>This is a level 5 Heading</h5>
<h6>This is a level 6 Heading</h6>
<br>
<p>A paragraph consists of one of more sentences
that form a self-contained unit of discourse. The
start of a paragraph is indicated by a new line.</p>
<p>Text is easier to understand when it is split up
into units of text. For example, a book may
have chapters. Chapters can have subheadings. Under
each heading there will be one or more
paragraphs.</p>
<br>
<p>This is how we make a word appear <b>bold.</b></p>
<p>Inside a product description you might see some
<b>key features</b> in bold.</p>
<p>This is how we make a word appear <i>italic.</i></p>
<p>It's a potato <i>Solanum teberosum</i>.</p>
<p>Captain Cook sailed to Australia on the
<i>Endeavour</i>.</p>
<br>
<p>On the 4<sup>th</sup> of September you will learn
about E=MC<sup>2</sup>.</p>
<p>The amount of CO<sub>2</sub> in the atmosphere
grew by 2ppm in 2009<sub>1</sub>.</p>
<br>
<p>The Earth<br />gets one hundred tons heavier every day<br />due to falling space dust.</p>
<p>Venus is the only planet that rotates clockwise.</p>
<hr />
<p>Jupiter is bigger than all the other plants
combined.</p>
<br>
<p><strong>Beware:</strong> Pickpockets operate in this area.</p>
<p>This toy has many small pieces and is <strong>not suitable for children under five years old.</strong></p>
<br>
<p>I <em>thinkg</em> Ivy was the first.</p>
<p>I think <em>Ivy</em> was the first.</p>
<p>I think Ivy was the <em>first</em>.</p>
<br>
<blockquote cite="http://en.wikipedia.org/wiki/Winnie-the-Pooh">
<p>Did you ever stop to think, and forget to start again?</p>
</blockquote>
<p>As A.A. Milne said, <q>Some people talk to animals. Not many listen though. That's the problem.</q></p>
<br>
<p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theorhetical physicist and cosmologist.</p>
<p><acronym title="National Aeronautics and Space Administration">NASA</acronym> do some crazy space stuff.</p>
<br>
<p><cite>A Brief History of Time</cite> by Stephen Hawking has sold over ten million copies worldwide.</p>
<br>
<p>A <dfn>black hole</dfn> is a region of space from which nothing, not even light, can escape.</p>
<br>
<address>
<p><a href="mailto:homer@example.org">
homer@example.org
</a></p>
<p>742 Evergreen Terrace, Springfield.</p>
</address>
<br>
<p>It was the <del>worst</del> <ins>best</ins> idea she ever had.</p>
<br>
<p>Laptop Computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
</body>
</html>