-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (88 loc) · 4.29 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
<!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">
<title>Frontend Mentor | FAQ Accordion Card</title>
<link rel="stylesheet" href="./css/style.min.css" id="theme-style">
<script defer src="./js/behavior.js"></script>
</head>
<body class="content">
<!-- CONTENT HEADER -->
<header role="header" class="content__header">
<div class="header__theme-switcher">
<input type="checkbox" name="theme-switcher" id="theme-switcher"
onchange="console.log(document.getElementById('theme-style').href='hello.css');" tabindex="0"
accesskey="t" title="Change theme [t]">
<label for="theme-switcher">dark theme</label>
</div>
</header>
<hr class="hidden"><!-- separator -->
<!-- MAIN CONTENT -->
<main role="main" class="content__main">
<div id="faq" class="faq__component">
<figure id="faq__decorations" class="faq__decorations">
<img class="faq__decorations-woman" src="./images/illustration-woman-online-desktop.svg"
alt="illustration of a woman on a whiteboard">
<img class="faq__decorations-box" src="./images/illustration-box-desktop.svg"
alt="illustration of a Box">
</figure>
<section id="faq_main" class="faq__main">
<h1 class="faq__header">FAQ</h1>
<article id="article__01" class="faq__article" tabindex="0" accesskey="1" title="accesskey [1]">
<h2 class="faq__article-title">How many team members can I invite?</h2>
<div class="faq__article-answer">
<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>
<article id="article__02" class="faq__article" tabindex="0" accesskey="2" title="accesskey [2]">
<h2 class="faq__article-title">What is the maximum file upload size?</h2>
<div class="faq__article-answer">
<p>No more than 2GB. All files in your account must fit your allotted storage space.</p>
</div>
</article>
<article id="article__03" class="faq__article" tabindex="0" accesskey="3" title="accesskey [3]">
<h2 class="faq__article-title">How do I reset my password?</h2>
<div class="faq__article-answer">
<p>Click “Forgot password” from the login page or “Change password” from your profile page. A
reset link will be emailed to you.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam sequi ea aspernatur adipisci.
A cumque deleniti quas id facere. Voluptates id asperiores labore quo? Consequuntur ducimus
ratione repellat debitis recusandae.</p>
<p>Repudiandae perferendis magni nesciunt minus placeat aliquam possimus, beatae eveniet, optio,
aut quo. Harum vero ipsum quasi ipsam fugit maxime, animi, quisquam voluptatibus mollitia
aperiam quis dolores reiciendis quas quae!</p>
<p>Iste maiores delectus dolores neque incidunt. Culpa, sequi, fugit nemo aperiam harum quos
recusandae perferendis nam neque ab doloremque impedit doloribus! Iure quo quis at provident
eligendi. Beatae, hic doloremque.</p>
</div>
</article>
<article id="article__04" class="faq__article" tabindex="0" accesskey="4" title="accesskey [4]">
<h2 class="faq__article-title">Can I cancel my subscription?</h2>
<div class="faq__article-answer">
<p> Yes! Send us a message and we’ll process your request no questions asked.</p>
</div>
</article>
<article id="article__05" class="faq__article" tabindex="0" accesskey="5" title="accesskey [5]">
<h2 class="faq__article-title">Do you provide additional support?</h2>
<div class="faq__article-answer">
<p>Chat and email support is available 24/7. Phone lines are open during normal business hours.
</p>
</div>
</article>
</section>
</div>
</main>
<hr class="hidden"> <!-- separator -->
<!-- CONTENT FOOTER -->
<footer role="contentinfo" class="content__footer">
<div 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/terremotoBCN">Terremoto BCN</a>.
</div>
</footer>
</body>
</html>