-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (151 loc) · 5.02 KB
/
index.html
File metadata and controls
163 lines (151 loc) · 5.02 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>FAQ Accordion Card | JS</title>
<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"
/>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<div class="container">
<div class="component">
<div class="illustration">
<img
src="./images/illustration-box-desktop.svg"
alt="illustration with box"
class="illustration__box"
/>
<img
class="illustration__woman-desktop"
src="./images/illustration-woman-online-desktop.svg"
alt="illustration with woman"
/>
<img
class="illustration__woman-mobile"
src="./images/illustration-woman-online-mobile.svg"
alt="illustration with woman"
/>
</div>
<div class="faq">
<h1 class="faq__title">FAQ</h1>
<dl class="faq__list">
<div class="faq__question">
<dt>
<button
aria-expanded="false"
aria-controls="faq1_desc"
data-qa="faq__question-button"
class="faq__question-button"
>
How many team members can I invite?
</button>
</dt>
<dd>
<p id="faq1_desc" data-qa="faq__desc" class="faq__desc">
You can invite up to 2 additional users on the Free plan.
There is no limit on team members for the Premium plan.
</p>
</dd>
</div>
<div class="faq__question">
<dt>
<button
aria-expanded="true"
aria-controls="faq2_desc"
data-qa="faq__question-button"
class="faq__question-button font-weight-bold"
>
What is the maximum file upload size?
</button>
</dt>
<dd>
<p
id="faq2_desc"
data-qa="faq__desc"
class="faq__desc show-description"
>
No more than 2GB. All files in your account must fit your
allotted storage space.
</p>
</dd>
</div>
<div class="faq__question">
<dt>
<button
aria-expanded="false"
aria-controls="faq3_desc"
data-qa="faq__question-button"
class="faq__question-button"
>
How do I reset my password?
</button>
</dt>
<dd>
<p id="faq3_desc" data-qa="faq__desc" class="faq__desc">
Click “Forgot password” from the login page or “Change
password” from your profile page. A reset link will be emailed
to you.
</p>
</dd>
</div>
<div class="faq__question">
<dt>
<button
aria-expanded="false"
aria-controls="faq4_desc"
data-qa="faq__question-button"
class="faq__question-button"
>
Can I cancel my subscription?
</button>
</dt>
<dd>
<p id="faq4_desc" data-qa="faq__desc" class="faq__desc">
Yes! Send us a message and we’ll process your request no
questions asked.
</p>
</dd>
</div>
<div class="faq__question">
<dt>
<button
aria-expanded="false"
aria-controls="faq5_desc"
data-qa="faq__question-button"
class="faq__question-button"
>
Do you provide additional support?
</button>
</dt>
<dd>
<p id="faq5_desc" data-qa="faq__desc" class="faq__desc">
Chat and email support is available 24/7. Phone lines are open
during normal business hours.
</p>
</dd>
</div>
</dl>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">
Frontend Mentor.</a
>
Coded by <a href="https://github.com/ALapina"> Anna Lapina.</a>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>