-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank.html
54 lines (49 loc) · 924 Bytes
/
thank.html
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
<!DOCTYPE html>
<html>
<head>
<title>Thank You for Booking!</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
margin: 0 auto;
max-width: 600px;
padding: 50px 20px;
text-align: center;
}
h1 {
color: #3C486B;
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 20px;
margin-bottom: 30px;
}
button {
background-color: #3C486B;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 20px;
padding: 10px 20px;
transition: all 0.3s ease-in-out;
}
button:hover {
background-color: orange;
}
</style>
</head>
<body>
<div class="container">
<h1>Thank You for Booking!</h1>
<p>Your booking has been received and we will get back to you soon.</p>
<button onclick="location.href='home.html'">Back to Home</button>
</div>
</body>
</html>