-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (59 loc) · 1.99 KB
/
index.html
File metadata and controls
68 lines (59 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IT Hotel</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<body>
<header>
<div id="Logo-Div">
<img id="Logo" src="images/itStep.jpg" alt="itstep">
</div>
<nav>
<button id="burgerBtn">☰</button>
<ul id="Nav-Bar">
<li><a href="index.html">Home</a></li>
<li><a href="Rooms.html">Rooms</a></li>
<li><a href="Hotels.html">Hotels</a></li>
<li><a href="Booked.html">Booked Rooms</a></li>
<li style="display: flex; align-items: center; gap: 8px;">
<img src="images/terryadavis.jpg"
alt="tarry davis"
style="width: 50px; height: 50px; border-radius: 50%; object-fit: cover;">
<a href="ai.html">სტაჟიორი თედო</a>
</li>
<li id="auth-link-container"></li>
</ul>
</nav>
<button id="darkModeBtn">🌙 Dark Mode</button>
</header>
<main>
<div id="Div1">
<h1 id="title_h1">5 Star Hotels</h1>
<h3 id="title-h3">And we like to keep it that way!</h3>
<button id="titleBtn"><a href="Hotels.html">see hotels</a></button>
</div>
<h1 id="guestsTitle">Guests Favorite Rooms</h1>
<div id="rooms"></div>
</main>
<footer>
<div id="footer-content">
<p>© 2026 Luxury Hotels. All rights reserved.</p>
<ul id="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="Rooms.html">Rooms</a></li>
<li><a href="Hotels.html">Hotels</a></li>
<li><a href="Booked.html">Booked Rooms</a></li>
</ul>
</div>
</footer>
<script src="auth.js"></script>
<script src="main.js"></script>
</body>
</html>