-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
167 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Thank You</title> | ||
<style> | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f4; | ||
} | ||
.container { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Thank You</h1> | ||
<img src="./t.png" alt="Thank"> | ||
</div> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<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; | ||
padding: 20px; | ||
} | ||
.container { | ||
background-color: #fff; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
max-width: 600px; | ||
margin: auto; | ||
} | ||
h2 { | ||
text-align: center; | ||
color: #333; | ||
} | ||
label { | ||
display: block; | ||
margin-bottom: 8px; | ||
font-weight: bold; | ||
} | ||
input[type="text"], input[type="email"], input[type="date"], input[type="number"], select, textarea { | ||
width: 100%; | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
box-sizing: border-box; | ||
} | ||
input[type="submit"] { | ||
background-color: #4CAF50; | ||
color: white; | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
} | ||
input[type="submit"]:hover { | ||
background-color: #45a049; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="container"> | ||
<h2>Hotel Booking Form</h2> | ||
<form action="#" method="post"> | ||
<label for="fname">First Name</label> | ||
<input type="text" id="fname" name="firstname" placeholder="Your first name.." required> | ||
|
||
<label for="lname">Last Name</label> | ||
<input type="text" id="lname" name="lastname" placeholder="Your last name.." required> | ||
|
||
<label for="email">Email</label> | ||
<input type="email" id="email" name="email" placeholder="Your email.." required> | ||
|
||
<label for="phone">Phone Number</label> | ||
<input type="text" id="phone" name="phone" placeholder="Your phone number.." required> | ||
|
||
<label for="checkin">Check-in Date</label> | ||
<input type="date" id="checkin" name="checkin" required> | ||
|
||
<label for="checkout">Check-out Date</label> | ||
<input type="date" id="checkout" name="checkout" required> | ||
|
||
<label for="adults">Number of Adults</label> | ||
<input type="number" id="adults" name="adults" min="1" max="10" required> | ||
|
||
<label for="children">Number of Children</label> | ||
<input type="number" id="children" name="children" min="0" max="10"> | ||
|
||
<label for="room">Room Type</label> | ||
<select id="room" name="room" required> | ||
<option value="single">Single Room</option> | ||
<option value="double">Double Room</option> | ||
<option value="suite">Suite</option> | ||
</select> | ||
|
||
<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> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters