-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (49 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MAX</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/f321571041.js" crossorigin="anonymous"></script>
<script src="home.js"></script>
</head>
<body>
<nav class="navbar1">
<h1 class="logo">HOTEL_MAX</h1>
<ul class="nav-links" >
<li><a href="#">Home</a></li>
<li><a href="./reservation.html">Reservation</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="./aboutus.html">About us</a></li>
<li class="ctn"><a href="./aboutus.html#footer">Contact</a></li>
</ul>
<div class="dropdown">
<i class="fa-solid fa-bars" id="menu-icon"></i>
<div class="side-bar">
<ul class="navlist1" type="none">
<li><a href="#">Home</a></li><hr>
<li><a href="./reservation.html">Reservation</a></li><hr>
<li><a href="./services.html">Services</a></li><hr>
<li><a href="./aboutus.html">About us</a></li><hr>
<li><a href="./aboutus.html#footer">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header>
<div class="header-content">
<h2>Explor the colour full World With our Hotels</h2>
<div class="line"></div>
<h1>A WONDERFULL STAY</h1>
<div class="reserv">
<button type="button" class="ctn" onclick="learnMore()">Reservation</button>
</div>
</div>
</header>
</body>
</html>