-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotels.html
More file actions
70 lines (65 loc) · 1.94 KB
/
hotels.html
File metadata and controls
70 lines (65 loc) · 1.94 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
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AP/DOCUMENTS</title>
<style>
body{
background: url("https://www.travelandleisure.com/thmb/N_r_xMvHfYjCHgZE-9bAWNiVAwU=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/TAL-conrad-maldives-rangali-island-MALDIVESHOTELS1024-6dfdeac00fec4f69893e7576b5896da9.jpg") no-repeat center center fixed;
}
nav {
background-color: #050647;
color: white;
padding: 10px 0;
}
nav ul {
list-style: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hotels.html">Hotels & Resorts</a></li>
<li><a href="info.html">Travel Info</a></li>
</ul>
</nav>
<h1 style="color:rgb(4, 15, 63);">PLACE?</h1>
<form action="index.html" class="inline"
>
<button class="float-center submit-button;" >Home</button>
</form>
<ul>
<li>MANALI</li>
<li>MUMBAI</li>
<li>KOLKATA</li>
<li>CHENNAI</li>
<li>BANGALORE</li>
<li>HYDERABAD</li>
<li>PUNE</li>
<li>JAIPUR</li>
</ul>
<div class="login-container">
<h2>Login</h2>
<form action="home.html" method="post">
<input type="text" name="username" placeholder="Enter Username or Email" required>
<input type="password" name="password" placeholder="Enter Password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="#">Register</a></p>
</div>
</body>
</html>