-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (92 loc) · 3.32 KB
/
Copy pathindex.html
File metadata and controls
116 lines (92 loc) · 3.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Hotel Booking</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">HotelBook</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="details.html" target="_blank">Bookings</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign up</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="checkin.html" class="btn " target="_blank" >Book Now</a></li>
</ul>
</nav>
<div class="destinations">
<h2>Explore Our Stays</h2>
<p>Choose from a wide range of accommodations that suit every traveler.</p>
<div class="grid-container">
<div class="card">
<img src="images/apartment.jpg" alt="Apartment">
<h3>Apartments</h3>
<p>Comfortable city apartments for business and leisure.</p>
</div>
<div class="card">
<img src="images/resort.jpg" alt="Resort">
<h3>Resorts</h3>
<p>Luxury resorts with stunning views and premium facilities.</p>
</div>
<div class="card">
<img src="images/villa.jpg" alt="Villa">
<h3>Villas</h3>
<p>Private villas for family vacations and special occasions.</p>
</div>
<div class="card">
<img src="images/hotel.jpg" alt="Hotel">
<h3>Hotels</h3>
<p>Cozy hotels in the heart of popular destinations.</p>
</div>
</div>
</div>
<div class="about">
<div class="about-container">
<div class="about-text">
<h2>About Us</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Adipisci ab esse, ut quas officiis deleniti suscipit perspiciatis nisi, obcaecati vel dolorem accusamus quibusdam quos excepturi neque officia ipsam dolore ad!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam blanditiis modi labore. Nostrum nihil rem nemo voluptas deleniti hic suscipit eveniet voluptatibus, qui maiores ratione aspernatur porro sunt eaque sint.
</p>
<button class="learn-btn">Learn More</button>
</div>
<div class="about-img">
<img src="images/about.jpg" alt="About Hotel Booking">
</div>
</div>
</div>
<div class="contact" id="contact">
<h2>Contact Us</h2>
<p>We’d love to hear from you! Get in touch for bookings, support, or inquiries.</p>
<div class="contact-container">
<form class="contact-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" rows="5" placeholder="Write your message"></textarea>
</div>
<button type="submit" class="send-btn">Send Message</button>
</form>
<div class="contact-info">
<h3>Get in Touch</h3>
<p><b>Email:</b> support@hotelbook.com</p>
<p><b>Phone:</b> +91 354434464</p>
<p><b>Address:</b> 123 Street, New Delhi, India</p>
</div>
</div>
</div>
</body>
</html>