forked from mustbebuilt/javascript-objects-json-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="js/clock.js" defer></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascrip: Working with Time</title>
<link rel="stylesheet" type="text/css" href="css/mobileFirst.css" />
<link rel="stylesheet" type="text/css" href="css/clock.css" />
<link
rel="stylesheet"
type="text/css"
media="only screen and (min-width:601px)"
href="css/desktop.css"
/>
</head>
<body>
<div class="container">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="staffList.html">Staff List</a></li>
</ul>
</nav>
<h1>
<span class="l1">B</span><span class="l2">u</span
><span class="l3">s</span><span class="l4">y</span
><span class="l5">.</span><span class="l6">c</span
><span class="l7">o</span><span class="l8">m</span>
</h1>
</header>
<div class="main">
<div class="contentLeft">
<h2>Digital</h2>
<div id="digitalClock"></div>
</div>
<div class="contentLeft">
<h2>Analogue</h2>
<div>
<!-- Analogue clock here -->
</div>
</div>
</div>
<footer>© 2023 mustbebuilt</footer>
</div>
</body>
</html>