-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
136 lines (134 loc) · 6.09 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
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQs</title>
<link rel="stylesheet" href="css files/faq.css">
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/038378b7e0.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" rel="stylesheet" />
</head>
<body>
<nav>
<div class="title">
<a href="index.html">abroad</a>
</div>
<div id="two-nav-blocks">
<div class="nav-sections">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="destinations.html">Destination</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<main>
<section class="faq-container">
<h2 class="faq-header">
<i class="ri-question-answer-fill"></i>Frequently Asked Questions
</h2>
<p>
About the Platform
</p>
<div class="faq-contain">
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>What is Abroad?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>What is Abroad?</h4>
<p>Abroad is a platform that helps you discover and explore amazing destinations worldwide, offering
recommendations, tips, and insights tailored to your interests.</p>
</div>
</div>
</div>
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>How does Abroad help me plan my trip?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>How does Abroad help me plan my trip?</h4>
<p>We provide destination reviews, ratings, travel guides, and curated lists of activities to ensure you
find the perfect locations and experiences for your journey.</p>
</div>
</div>
</div>
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>Is the platform free to use?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>Is the platform free to use?</h4>
<p>Yes, exploring destinations and accessing most of our resources is free.</p>
</div>
</div>
</div>
</div>
<p>
Support and Policies
</p>
<div class="faq-contain">
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>How do I contact customer support?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>How do I contact customer support?</h4>
<p>You can reach us through the Contact Us page, email,or social media pages available on our website.</p>
</div>
</div>
</div>
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>Do I need to create an account to use the platform?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>Do I need to create an account to use the platform?</h4>
<p>No, you can browse freely. However, creating an account allows you to save preferences and access
additional features.</p>
</div>
</div>
</div>
<div class="faq-grid">
<div class="faq-card">
<div class="faq-bg">
<span><i class="ri-question-fill"></i></span>
<h4>Do you offer travel guides or itineraries?</h4>
</div>
<div class="faq-content">
<span><i class="ri-question-fill"></i></span>
<h4>Do you offer travel guides or itineraries?</h4>
<p>Yes, we provide detailed travel guides and pre-designed itineraries for popular destinations.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 All Rights Reserved.</p>
</div>
</footer>
</body>
</html>