-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathfaq_page.html
More file actions
59 lines (55 loc) · 2.55 KB
/
faq_page.html
File metadata and controls
59 lines (55 loc) · 2.55 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ Page</title>
<link rel="stylesheet" href="./faq_page.css">
</head>
<body>
<div class="container">
<h1>Frequently Asked Questions</h1>
<div class="stack">
<input type="checkbox" name="faq" id="faq1">
<label for="faq1">
<h2>01</h2>
<h3>How do I apply?</h3>
</label>
<div class="content"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis molestias consequatur, illo provident nostrum repellendus officia, laudantium magnam eius, libero eaque consectetur labore? Aspernatur laudantium rem iure optio commodi ea.</p></div>
</div>
<div class="stack">
<input type="checkbox" name="faq" id="faq2">
<label for="faq2">
<h2>02</h2>
<h3>How do I apply?</h3>
</label>
<div class="content"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis molestias consequatur, illo provident nostrum repellendus officia, laudantium magnam eius, libero eaque consectetur labore? Aspernatur laudantium rem iure optio commodi ea.</p></div>
</div>
<div class="stack">
<input type="checkbox" name="faq" id="faq3">
<label for="faq3">
<h2>03</h2>
<h3>How do I apply?</h3>
</label>
<div class="content"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis molestias consequatur, illo provident nostrum repellendus officia, laudantium magnam eius, libero eaque consectetur labore? Aspernatur laudantium rem iure optio commodi ea.</p></div>
</div>
<div class="stack">
<input type="checkbox" name="faq" id="faq4">
<label for="faq4">
<h2>04</h2>
<h3>How do I apply?</h3>
</label>
<div class="content"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis molestias consequatur, illo provident nostrum repellendus officia, laudantium magnam eius, libero eaque consectetur labore? Aspernatur laudantium rem iure optio commodi ea.</p></div>
</div>
<div class="stack">
<input type="checkbox" name="faq" id="faq5">
<label for="faq5">
<h2>05</h2>
<h3>How do I apply?</h3>
</label>
<div class="content"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis molestias consequatur, illo provident nostrum repellendus officia, laudantium magnam eius, libero eaque consectetur labore? Aspernatur laudantium rem iure optio commodi ea.</p></div>
</div>
</div>
</body>
</html>