-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
54 lines (41 loc) · 1.28 KB
/
hello.html
File metadata and controls
54 lines (41 loc) · 1.28 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
<html>
<head>
<title>A Vanilla Web Page</title>
</head>
<body>
<h1>A Vanilla Web Page</h1>
<h2>Two Lorem Ipsum Paragraphs</h2>
<p>Lorem ipsum te sed movet aeterno expetenda, quo alterum atomorum
ea, ei possit persequeris mel. Usu assum sententiae ne. Possit
consulatu liberavisse ea duo. Timeam omittam invenire cu vix.
Mel id tibique sadipscing, sea adhuc animal principes cu. Gubergren
disputando ne est, pri ea cetero fuisset nominavi, qui te graeco
reprimique neglegentur.</p>
<p>Pro no simul labores, mei maluisset reprimique disputando ad.
Cu molestiae quaerendum eum. Labore euismod in duo, est perfecto
antiopam id. Dicta adipisci urbanitas vix id, te mel hendrerit
assentior. Nec et puto facilisis, est nibh suscipiantur in. Ad nec
vitae oratio, dicit mollis volumus pri an, deserunt argumentum has eu.</p>
<p> </p>
<h2>List of Latin Numbers</h2>
<ol>
<li>unus</li>
<li>duo</li>
<li>tres</li>
<li>quattor</li>
<li>quinque</li>
<li>sex</li>
<li>septem</li>
<li>octo</li>
<li>novem</li>
<li>decem</li>
</ol>
<p> </p>
<h2>Table of Latin Numbers</h2>
<table cellpadding=5>
<tr> <td>unus</td> <td>duo</td> <td>tres</td> </tr>
<tr> <td>quattor</td> <td>quinque</td> <td>sex</td> </tr>
<tr> <td>septem</td> <td>octo</td> <td>novem</td> </tr>
</table>
</body>
</html>