-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ Page</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="faq-container">
<h1 class="faq-title">Frequently Asked Questions</h1>
<div class="faq-list">
<div class="faq-item">
<div class="question">What is Lorem Ipsum?</div>
<div class="answer">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
</div>
<div class="faq-item">
<div class="question">Why do we use it?</div>
<div class="answer">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</div>
</div>
<div class="faq-item">
<div class="question">How can I contact support?</div>
<div class="answer">You can contact our support team through email or phone. Please visit the Contact Us page for more information.</div>
</div>
<div class="faq-item">
<div class="question">Is there a mobile app?</div>
<div class="answer">Yes, we have a mobile app available for both Android and iOS devices. You can download it from the respective app stores.</div>
</div>
<div class="faq-item">
<div class="question">Can I change my subscription plan?</div>
<div class="answer">Yes, you can change your subscription plan at any time by visiting your account settings and selecting a new plan.</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>