-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 1.67 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Journey Grove</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #123456;
color: #ffffff;
text-align: center;
padding: 1rem;
}
h1 {
margin: 0;
}
main {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-top: 20px;
padding: 20px;
}
footer {
text-align: center;
margin-top: 20px;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Journey Grove 🏨</h1>
</header>
<div class="container">
<main>
<h2>How Can We Help You Today?</h2>
<p>Need help with hotel booking or car rental? Our chatbot is here to assist you 24/7.</p>
<p>Click the chat icon in the bottom right corner to get started!</p>
<p>Call us at <a href="tel:+1 833-833-0075">+1 833-833-0075</a> 📞.</p>
</main>
<footer>
<p>© 2024 Journey Grove. All rights reserved.</p>
</footer>
</div>
</body>
</html>