-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
50 lines (43 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | FAQ Accordion Card</title>
</head>
<body>
<div class="container">
<div class="faq">
<div class="left-content">
<img class="image1" src="./images/illustration-woman-online-desktop.svg" alt="woman">
<img class="image2" src="./images/illustration-box-desktop.svg" alt="box">
</div>
<div class="right-content">
<h1 class="headline">FAQ</h1>
<div class="qAnda">
<p class="questions" id="q1">How many team members can I invite?</p>
<hr>
<p class="questions" id="q2">What is the maximum file upload size?</p>
<hr>
<p class="questions" id="q3">How do I reset my password?</p>
<hr>
<p class="questions" id="q4">Can I cancel my subscription?</p>
<hr>
<p class="questions" id="q5">Do you provide additional support?</p>
<hr>
</div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>