-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
56 lines (48 loc) · 1.21 KB
/
hello.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Hello World Test Page</title>
<style>
div {
color: orange;
font-size: 48pt;
}
.french {
color: blue;
font-style: italic;
font-family: helvetica;
}
.goodbye {
color: red;
font-size: 36pt;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>This is the page where we say hello!</p>
<div id="hello-list">
We say Hello!
<ul>
<li> Hola! </li>
<li> Bonjour! </li>
<li> Ni hao! </li>
<li> Namaste! </li>
<li> Salaam! </li>
</ul>
</div>
<div id="goodbye-list" class="goodbye">
We say goodbye!
<ol>
<li> Adios! </li>
<li class="french"> Au Revior </li>
<li> Zaijian! </li>
<li> Alavida! </li>
<li> Wadaeaan! </li>
</ol>
</div>
<img src="http://www.threadbombing.com/data/media/2/hey_over_here.gif" width = 400/>
<p>And now, <a href="http://www.omniglot.com/language/phrases/hello.htm">say hello in lots of languages!</a></p>
</body>
</html>