-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
127 lines (107 loc) · 4.48 KB
/
faq.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
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
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel B N B FAQ</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em;
}
h2 {
color: #ffffff;
}
.faq-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.faq-question {
margin-bottom: 10px;
}
.faq-answer {
margin-bottom: 20px;
}
.faq-question,
.faq-answer {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
footer {
text-align: center;
padding: 10px;
background-color: #2c3e50;
color: #ecf0f1;
}
</style>
</head>
<body>
<header>
<h1>Hotel B N B</h1>
<h2>FAQ </h2>
</header>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question">Q: How can I make a reservation at Hotel B N B?</div>
<div class="faq-answer">A: You can easily make a reservation through our website by clicking on the "Book
Now" button. Alternatively, you can contact our reservations team at <a
href="mailto:[email protected]">[email protected]</a> or call us at +91 9876543210.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: Can I modify or cancel my reservation online?</div>
<div class="faq-answer">A: Yes, you can modify or cancel your reservation online through our website. Please
refer to our <a href="cancel.html">Cancellation Policy</a> for more details.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: What types of rooms does Hotel B N B offer?</div>
<div class="faq-answer">A: We offer a variety of rooms, including standard rooms, suites, and deluxe
accommodations. You can explore our room options on the "Accommodations" page.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: What amenities are included in the rooms?</div>
<div class="faq-answer">A: Our rooms come equipped with [list some key amenities, such as free Wi-Fi,
flat-screen TVs, etc.]. You can find a detailed list on the "Rooms & Suites" page.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: What time is check-in/check-out at Hotel B N B?</div>
<div class="faq-answer">A: Check-in is at 8 am and check-out is at 9 pm. Early check-in or late check-out
may be available upon request and subject to availability.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: Does Hotel B N B have on-site dining options?</div>
<div class="faq-answer">A: Yes, we have [insert restaurant name] on-site, offering [describe the type of
cuisine and dining experience]. You can explore our dining options on the "Dining" page.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: What is the hotel's cancellation policy?</div>
<div class="faq-answer">A: Our cancellation policy varies based on the type of reservation. Please refer to
our <a href="cancel.html">Cancellation Policy</a> for detailed information.</div>
</div>
<div class="faq-item">
<div class="faq-question">Q: How can I contact Hotel B N B for further assistance?</div>
<div class="faq-answer">A: You can reach our front desk at +91 9876543210 or send an email to <a
href="mailto:[email protected]">[email protected]</a>. For specific inquiries, you can also use our
<a href="#contact-form">Contact Form</a>.
</div>
</div>
</div>
<footer>
<p>© 2023 Hotel B N B. All Rights Reserved.</p>
</footer>
</body>
</html>