-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
71 lines (65 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<title>DIGITAL CLOCK</title>
<link rel="stylesheet" href="style.css">
<style>
body
{
margin-top: 80px;
padding: 30px;
background-size: cover;
font-family: sans-serif;
}
header {
background-color: rgb(108, 223, 41);
position: fixed;
left: 0;
right: 0;
top: 0px;
height: 39px;
display: flex;
align-items: center;
box-shadow: 0 0 25px 0 black;
}
header * {
display: inline;
}
header li {
margin: 45px;
}
header li a {
color: black;
text-decoration: none;
}
footer {
text-align: center;
padding: 3px;
background-color: DarkSalmon;
color: white;
margin-bottom: 0px;
}
</style>
</head>
<body id="clock">
<header>
<nav>
<ul>
<li><a href="#"> Home </a> </li>
<li><a href="https://eramarsingh.netlify.app" target="_blank"> About </a></li>
<li><a href="https://www.linkedin.com/in/amarsingh7/" target="_blank"> Contact </a> </li>
<li> <a href="#"> Terms of use </a></li>
<li> <a href="https://forms.gle/E2N4U6V6Lr7TBdw69" target="_blank"> Join Us </a> </li>
</ul>
</nav>
</header>
<h2><span id="time"></span></h2>
<script src="machine.js"> </script>
<div class="footer">
<h2>@Copyright Amar Singh 2022- All Rights Reserved</h2>
</div>
</body>
</html>