Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
coderajawat committed Sep 11, 2024
0 parents commit 003bf4b
Show file tree
Hide file tree
Showing 15 changed files with 797 additions and 0 deletions.
Binary file added images/about.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/explore.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/facebook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions images/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div id="wrapper">
<div class="container">
<div class="navbar">
<div class="logo-container">
<img src="./images/lo" alt="">
</div>
</div>
</div>
</div>
</body>
</html>
Binary file added images/instagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/room-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/room-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/room-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/service.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
310 changes: 310 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,310 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Filled|Material+Icons+Outlined"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>

<body>
<div id="wrapper">
<header class="header-container">
<nav>
<div class="navbar">
<div class="logo">
<a href="#">
<img src="./images/logo.png" alt="">
</a>
</div>
</div>
<div class="nav-items">
<div><a href="#">Home</a></div>
<div><a href="#">About</a></div>
<div><a href="#">Services</a></div>
<div><a href="#">Explore</a></div>
<div><a href="#">Contact</a></div>
</div>
<button class="btn nav-btn">Book Now</button>
</nav>
<div class="hero-section section-container">
<p>Simple - Unique - Friendly</p>
<h1>Make Yourself At Home
<br>
In Our <span>Hotel</span>
</h1>
</div>
</header>
<section class=".section-container booking">
<form action="/" class="booking-form">
<div class="input-group">
<span class="material-icons">
date_range
</span>
<div class="check-info">
<label for="check-in">CHECK-IN</label>
<input type="text" id="check-in" placeholder="Check In">
</div>
</div>
<div class="input-group">
<span class="material-icons">
date_range
</span>
<div class="check-info">
<label for="check-out">CHECK-OUT</label>
<input type="text" id="check-out" placeholder="Check Out">
</div>
</div>
<div class="input-group">
<span class="material-icons">
person
</span>
<div class="check-info">
<label for="Guest">GUEST</label>
<input type="text" id="Guest" placeholder="Guest">
</div>
</div>
<div class="input-group">
<button class="btn">CHECK OUT</button>
</div>
</form>
</section>
<section class="section-container about-section">
<div class="about-image">
<img src="./images/about.jpg" alt="">
</div>
<div class="about-container">
<div class="sub-heading">
<p>ABOUT US</p>
<div></div>
</div>
<div class="heading">
<h2>The Best Holidays Start Here!</h2>
<p class="description">
With a focus on quality accommodations, personalized experiences, and seamless booking,
our
platform is dedicated to ensuring that every traveler embarks on their dream holiday
with
confidence and excitement.
</p>
<button class="btn">Read More</button>
</div>
</div>
</section>
<section class="section-container room-section">
<div class="sub-heading">
<p>OUR LIVING ROOM</p>
<div></div>
</div>
<div class="heading">
<h2>The Most Memorable Rest Time Starts Here.</h2>
<div class="room-container">
<div class="card">
<div class="room-image">
<img src="./images/room-1.jpg" alt="">
</div>
<div class="room-info">
<h4>Deluxe Ocean View</h4>
<p>Bask in luxury with breathtaking ocean views from your private suite.</p>
<div>Starting from <span>$299/night</span></div>
<button class="btn">Book Now</button>
</div>
</div>
<div class="card">
<div class="room-image">
<img src="./images/room-2.jpg" alt="">
</div>
<div class="room-info">
<h4>Executive Cityscape Room</h4>
<p>Experience urban elegance and modern comfort in the heart of the city.</p>
<div>Starting from <span>$199/night</span></div>
<button class="btn">Book Now</button>
</div>
</div>
<div class="card">
<div class="room-image">
<img src="./images/room-3.jpg" alt="">
</div>
<div class="room-info">
<h4>Family Garden Retreat</h4>
<p>Spacious and inviting, perfect for creating cherished memories with loved ones.</p>
<div>Starting from <span>$249/night</span></div>
<button class="btn">Book Now</button>
</div>
</div>
</div>
</div>
</section>
<section class="service-section">
<div class="section-container service-container">
<div class="services">
<div class="sub-heading">
<p>SERVICES</p>
<div></div>
</div>
<div class="heading">
<h2>Strive Only For The Best.</h2>
<ul class="service-list">
<li>
<span class="material-icons-outlined">
local_police
</span>
High Class Security
</li>
<li>
<span class="material-icons-outlined">
restore
</span>
24 Hour Room Service
</li>
<li>
<span class="material-icons-outlined">
headphones
</span>
Conference Room
</li>
<li>
<span class="material-icons-outlined">
map
</span>
Tourist Guide Support
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section-container banner-container">
<div class="banner">
<div class="banner-card">
<h4>25+</h4>
<p>Properties Available</p>
</div>
<div class="banner-card">
<h4>350+</h4>
<p>Bookings Completed</p>
</div>
<div class="banner-card">
<h4>600+</h4>
<p>Happy Customers</p>
</div>
</div>
</section>
<section class="explore-section">
<div class="explore-heading">
<div class="sub-heading">
<p>EXPLORE</p>
<div></div>
</div>
<h2>What's New Today.</h2>
</div>
<div class="explore-container">
<div class="explore-content">
<p class="description">10th MAR 2023</p>
<h4>A New Menu Is Available In Our Hotel.</h4>
<button class="btn">Continue</button>
</div>
</div>
</section>
<footer class="footer-section">
<div class="footer-panel1">
<span>Back to top</span>
</div>
<div class="footer-panel2 section-container">
<div class="column">
<div class="logo">
<a href="#home">
<img src="./images/logo.png" alt="">
</a>
</div>
<p class="description">
Discover a world of comfort, luxury, and adventure as you explore
our curated selection of hotels, making every moment of your getaway
truly extraordinary.
</p>
<button class="btn">Book Now</button>
</div>
<div class="column">
<h4>QUICK LINKS</h4>
<ul class="footer-links">
<li>
<a href="#">Browse Destinations</a>
</li>
<li>
<a href="#">Special Offers & Packages</a>
</li>
<li>
<a href="#">
Room Types & Amenities
</a>
</li>
<li>
<a href="#">
Customer Reviews & Ratings
</a>
</li>
<li>
<a href="#">Travel Tips & Guides</a>
</li>
</ul>
</div>
<div class="column">
<h4>OUR SERVICES</h4>
<ul class="footer-links">
<li>
<a href="#">Concierge Assistance</a>
</li>
<li>
<a href="#">Flexible Booking Options</a>
</li>
<li>
<a href="#">
Airport Transfers
</a>
</li>
<li>
<a href="#">
Wellness & Recreation
</a>
</li>
</ul>
</div>
<div class="column">
<h4>CONTACT US</h4>
<ul class="footer-links">
<li>
<a href="#">[email protected]</a>
</li>
</ul>
<div class="socials">
<a href="#">
<img src="./images/facebook.png" alt="facebook-logo">
</a>
<a href="#">
<img src="./images/instagram.png" alt="instagram-logo">
</a>
<a href="#">
<img src="./images/youtube.png" alt="youtube-logo">
</a>
<a href="#">
<img src="./images/twitter.png" alt="twitter-logo">
</a>
</div>
</div>
</div>
<div class="footer-panel3">
<div class="copyright">
Copyright © 2024 Web Design. All rights reserved.
</div>
</div>
</footer>
</div>
</body>

</html>
Loading

0 comments on commit 003bf4b

Please sign in to comment.