-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 2.1 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
<!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">
<script src="js/index.js"></script>
<link rel="stylesheet" href="css/index.css">
<title>Frontend Mentor | FAQ Accordion Card</title>
</head>
<body>
<div class="cont_mainCard">
<div class="cont_izq">
<div class="bg_1">
<div class="bg_2"></div>
</div>
<img src="images/illustration-box-desktop.svg" alt="a">
</div>
<div class="cont_der">
<h1>FAQ</h1>
<ul>
<li>
<h4>How many team members can I invite? <img src="images/icon-arrow-down.svg"></h4>
<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>
</li>
<li>
<h4>What is the maximum file upload size? <img src="images/icon-arrow-down.svg"></h4>
<p>No more than 2GB. All files in your account must fit your allotted storage space.</p>
</li>
<li>
<h4>How do I reset my password? <img src="images/icon-arrow-down.svg"></h4>
<p>Click “Forgot password” from the login page or “Change password” from your profile page. A reset link will be emailed to you.</p>
</li>
<li>
<h4>Can I cancel my subscription? <img src="images/icon-arrow-down.svg"></h4>
<p>Yes! Send us a message and we’ll process your request no questions asked.</p>
</li>
<li>
<h4>Do you provide additional support? <img src="images/icon-arrow-down.svg"></h4>
<p>Chat and email support is available 24/7. Phone lines are open during normal business hours.</p>
</li>
</ul>
</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/lAntraXxXl/" target="_blank">|AntraXxX|</a>.
</div>
</div>
</body>
</html>