-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (52 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>George</title>
<script src="tone.js"></script>
<script src="app.js"></script>
<style>
body {
text-align: center;
background-color: silver;
}
.header {
text-align: center;
}
#time {
font-size: 24px;
}
button {
font-family: Times;
font-size: 24px;
height: 100px;
width: 300px;
}
.border {
border-spacing: 2px;
border: 8px groove;
}
</style>
</head>
<body>
<div class="header">
<img src="images/telecomlogo.jpg" alt="Telstra" height="64"><br>
</div>
<h1>1194 Online Time Service Home Page</h1>
<p>
<img class="border" src="images/1990s.jpg" alt="">
</p>
<p>
<img src="images/new.gif" alt="" height="24">
Welcome to our World Wide Web server.
</p>
<p>Please ensure your speakers are switched on.</p>
<p>Note: this site currently relies on your device's clock and may not necessarily be correct.</p>
<p id="time">
<button id="start" onClick="start();">Click here to start clock</button>
</p>
<p>
<img src="images/socog.gif" alt="" >
</p>
</body>
</html>