-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (47 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hotels</title>
<link rel="stylesheet" href="css/Style.css">
</head>
<body>
<div class="container">
<!-- Navigation -->
<nav class="navbar">
<div class="brand-name">
<h5>Abhay</h5>
</div>
<div class="nav-items">
<ul class="navbar-nav">
<li class="nav-link">Home</li>
<li class="nav-link">Pricing</li>
<li class="nav-link">Contact Us</li>
<button class="sign-in">Sign In</button>
</ul>
</div>
</nav>
<!-- Light switch -->
<div class="lightswitch">
<input type="checkbox" name="switch" id="switch">
<label for="checkbox"></label>
</div>
<div class="imglayer">
<img src="img/Night_4.png" alt="shop" id="shops">
</div>
<h4>
<span class="hours">20</span>
<span class="minutes">35</span>
<span class="seconds">02</span>
</h4>
</div>
<footer>
<div class="foot">
<p>© 2020 | Made with 💛 by Abhay Anand</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>