-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (63 loc) · 4.11 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
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAQs Responsive Template</title>
<!--link the main css file here -->
<link rel="stylesheet" type="text/css" href="index-styles.css">
<!--link the main js file here -->
<script src="faq-script.js"></script>
<!-- Add the following line to link your ICO icon -->
<link rel="shortcut icon" href="img/faq-icon.ico" type="image/x-icon">
</head>
<body>
<!-- faq container with image -->
<h1 class="faqs-whole-container-faq-heading">Frequently Asked Questions</h1>
<div class="faqs-whole-container">
<br>
<div class="faqs-whole-container-content">
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
What is Lorem Ipsum ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Lorem Ipsum is placeholder text commonly used in the design and publishing industries. It resembles Latin but is actually gibberish, intended to fill space temporarily until the final text is available.</div>
</div>
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
Why is Lorem Ipsum Used ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Lorem Ipsum is used as a placeholder for text when the actual content is not yet available. It helps designers and developers visualize the layout and structure of a document or webpage without being distracted by meaningful text.</div>
</div>
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
Who Invented Lorem Ipsum ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Lorem Ipsum has roots in classical Latin literature but gained popularity as a placeholder text in the 20th century. Its exact origins are unclear, but it's commonly attributed to variations of passages from works of Cicero and other classical authors.</div>
</div>
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
How Is Lorem Ipsum Different from Regular Text ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Lorem Ipsum is intentionally nonsensical and lacks any coherent meaning, whereas regular text communicates meaningful information. It consists of repeated phrases and words that do not form coherent sentences, making it ideal for placeholder content.</div>
</div>
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
Is Lorem Ipsum Still Used Today ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Yes, Lorem Ipsum remains widely used in various industries, especially in graphic design, web development, and typesetting. Despite advancements in technology, it continues to serve its purpose as a temporary placeholder for text.</div>
</div>
<div class="faqs-whole-container-faq-item">
<div class="faqs-whole-container-question">
Can Lorem Ipsum Be Translated ? <span class="faqs-whole-container-toggle-icon">+</span>
</div>
<div class="faqs-whole-container-answer">Lorem Ipsum is not meant to be translated into any meaningful language because it is essentially random and nonsensical text. However, some variations or adaptations may exist in different languages, but they still serve the same purpose of placeholder text.</div>
</div>
</div>
<!-- right side image for the faq -->
<div class="faqs-whole-container-image">
<img src="img/6384636.jpg" alt="faq image">
</div>
</div>
</body>
</html>