-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
186 lines (143 loc) · 5.9 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!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="icon" type="image/png" sizes="32x32"
href="./images/favicon-32x32.png">
<link rel="stylesheet" href="styles/style.css">
<title>Frontend Mentor | FAQ Accordion Card</title>
</head>
<body>
<div class="card-wrapper | content-cc">
<div class="faq-card">
<div class="faq-ilustrations">
<!-- mobile -->
<object class="mobile pattern" data="images/bg-pattern-mobile.svg"
type="image/svg+xml"></object>
<object class="mobile ilust"
data="images/illustration-woman-online-mobile.svg"
type="image/svg+xml"></object>
<!-- mobile -->
<!-- desktop -->
<div class="img-desk-wrapper">
<object class="desktop pattern" data="images/bg-pattern-desktop.svg"
type="image/svg+xml"></object>
<object class="desktop ilust"
data="images/illustration-woman-online-desktop.svg"
type="image/svg+xml"></object>
</div>
<object class="desktop ilust flotant"
data="images/illustration-box-desktop.svg" type="image/svg+xml"></object>
<!-- desktop -->
</div>
<main class="faq-content">
<h1>FAQ</h1>
<div class="faq-articles">
<article class="faq-accordion">
<input type="checkbox" class="tgg-title" id="tgg-title-1">
<div class="faq-accordion-title">
<h2>
<label for="tgg-title-1">
How many team members can I invite?
<span class="arrow-icon">
<object data="images/icon-arrow-down.svg"
type="image/svg+xml"></object>
</span>
</label>
</h2>
</div>
<div class="faq-accordion-content">
<p>You can invite up to 2 additional users on the Free plan.
There is no limit on
team members for the Premium plan.</p>
</div>
</article> <!-- faq accordion -->
<article class="faq-accordion">
<input type="checkbox" class="tgg-title" id="tgg-title-2">
<div class="faq-accordion-title">
<h2>
<label for="tgg-title-2">
What is the maximum file upload size?
<span class="arrow-icon">
<object data="images/icon-arrow-down.svg"
type="image/svg+xml"></object>
</span>
</label>
</h2>
</div>
<div class="faq-accordion-content">
<p>No more than 2GB. All files in your account must fit your
allotted storage space.</p>
</div>
</article> <!-- faq accordion -->
<article class="faq-accordion">
<input class="tgg-title" type="checkbox" id="tgg-title-3">
<div class="faq-accordion-title">
<h2>
<label for="tgg-title-3">
How do I reset my password?
<span class="arrow-icon">
<object data="images/icon-arrow-down.svg"
type="image/svg+xml"></object>
</span>
</label>
</h2>
</div>
<div class="faq-accordion-content">
<p>Click “Forgot password” from the login page or “Change
password” from your profile page.
A reset link will be emailed to you.</p>
</div>
</article> <!-- faq accordion -->
<article class="faq-accordion">
<input class="tgg-title" type="checkbox" id="tgg-title-4">
<div class="faq-accordion-title">
<h2>
<label for="tgg-title-4">
Can I cancel my subscription?
<span class="arrow-icon">
<object data="images/icon-arrow-down.svg"
type="image/svg+xml"></object>
</span>
</label>
</h2>
</div>
<div class="faq-accordion-content">
<p>
Yes! Send us a message and we’ll process your request no
questions asked.</p>
</div>
</article> <!-- faq accordion -->
<article class="faq-accordion">
<input class="tgg-title" type="checkbox" id="tgg-title-5">
<div class="faq-accordion-title">
<h2>
<label for="tgg-title-5">
Do you provide additional support?
<span class="arrow-icon">
<object data="images/icon-arrow-down.svg"
type="image/svg+xml"></object>
</span>
</label>
</h2>
</div>
<div class="faq-accordion-content">
<p> Chat and email support is available 24/7. Phone lines are
open during normal business hours.</p>
</div>
</article> <!-- faq accordion -->
</div> <!-- faq articles -->
</main> <!-- faq -->
</div> <!-- faq card -->
</div> <!-- card wrapper -->
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge"
target="_blank">Frontend Mentor</a>.
Coded by <a
href="https://www.frontendmentor.io/profile/Romerof/bookmarks">Javier
Romero</a>.
</footer>
</body>
</html>