Skip to content

Commit

Permalink
Merge branch 'main' into feat/popup-on-suxccessful-login
Browse files Browse the repository at this point in the history
  • Loading branch information
ANKeshri authored Jul 21, 2024
2 parents b363de7 + 6c5c164 commit ad7ba29
Show file tree
Hide file tree
Showing 10 changed files with 995 additions and 329 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div>
<lottie-player src="https://lottie.host/d255520b-69e6-4038-9c0d-dd0fea22ff34/cEkKelgU4A.json" background="##FFFFFF" speed="1" style="width: 300px; height: 300px" loop autoplay direction="1" mode="normal"></lottie-player>
</div>
<button><a href="index.html">Home</a></button>
<button><a href="./index.html">Home</a></button>
</div>

<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
Expand Down
265 changes: 256 additions & 9 deletions Adventure.html

Large diffs are not rendered by default.

51 changes: 32 additions & 19 deletions hotel.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,70 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel Booking Form</title>
<style>
a:link, a:visited {
background-color: #068e04;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}

a:hover, a:active {
background-color: rgb(8, 233, 23);
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
background-image: url(https://w0.peakpx.com/wallpaper/371/1012/HD-wallpaper-maldives-at-night-resort-maldives-beautiful-lights.jpg); /* Replace 'background.jpg' with your image path */
background-size: cover;
background-position: center;
color: #333;
padding: 20px;
transition: background-color 0.3s, color 0.3s;

}

.container {
background-color: #fff;

padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
box-shadow: 0 0 10px rgba(0,0,0,0.9);
max-width: 600px;
margin: auto;
transition: background-color 0.3s, color 0.3s;
background-color: rgba(50, 50, 50, 0.9);
}
h2 {
text-align: center;
color: #333;
color: red;

}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: white;
}
input[type="text"], input[type="email"], input[type="date"], input[type="number"], select, textarea {
width: 100%;
background: #ccc;
padding: 10px;
margin-bottom: 20px;
color: black;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
transition: border-color 0.3s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="date"]:focus, input[type="number"]:focus, select:focus, textarea:focus {
border-color: #4CAF50;
}
input[type="submit"] {
input[type="submit"], .btn-book {
background-color: #4CAF50;
margin-left: 15rem;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
input[type="submit"]:hover {
input[type="submit"]:hover, .btn-book:hover {
background-color: #45a049;
}
.btn-book {
text-decoration: none;
}

</style>
</head>
<body>
Expand Down Expand Up @@ -99,9 +109,12 @@ <h2>Hotel Booking Form</h2>

<label for="special-requests">Special Requests</label>
<textarea id="special-requests" name="special_requests" placeholder="Any special requests.." style="height:100px"></textarea>
<a href="./Thank.html" target="_blank">Book Now</a>
<a href="./Thank.html" target="_blank" class="btn-book">Book Now</a>
</form>

</div>



</body>
</html>
Loading

0 comments on commit ad7ba29

Please sign in to comment.