2022-02-20 04:24:07 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2022-02-20 04:39:51 +01:00
|
|
|
|
|
2022-02-20 04:24:07 +01:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2022-02-20 04:39:51 +01:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<!-- displays site properly based on user's device -->
|
2022-02-20 04:24:07 +01:00
|
|
|
|
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
|
2022-02-20 04:39:51 +01:00
|
|
|
|
|
2022-02-20 04:24:07 +01:00
|
|
|
|
<title>Frontend Mentor | FAQ Accordion Card</title>
|
2022-03-22 12:41:22 +01:00
|
|
|
|
<link rel="stylesheet" href="css/reset.css">
|
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2022-02-20 04:24:07 +01:00
|
|
|
|
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
|
2022-03-22 12:41:22 +01:00
|
|
|
|
<!-- <style>
|
2022-02-20 04:39:51 +01:00
|
|
|
|
.attribution {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attribution a {
|
|
|
|
|
color: hsl(228, 45%, 44%);
|
|
|
|
|
}
|
2022-03-22 12:41:22 +01:00
|
|
|
|
</style> -->
|
2022-02-20 04:24:07 +01:00
|
|
|
|
</head>
|
2022-02-20 04:39:51 +01:00
|
|
|
|
|
2022-02-20 04:24:07 +01:00
|
|
|
|
<body>
|
2022-09-15 02:36:33 +02:00
|
|
|
|
<!-- <main> -->
|
|
|
|
|
<div class="card">
|
|
|
|
|
<!-- <header class="card__header"> -->
|
|
|
|
|
<div class="card__header_thing">
|
|
|
|
|
<div class="card__header_image desktop">
|
|
|
|
|
<img class="woman" src="./images/illustration-woman-online-desktop.svg" alt="">
|
|
|
|
|
<img class="box" src="./images/bg-pattern-desktop.svg" alt="">
|
|
|
|
|
<img class="background" src="./images/illustration-box-desktop.svg" alt="">
|
2022-03-22 12:41:22 +01:00
|
|
|
|
</div>
|
2022-09-15 02:36:33 +02:00
|
|
|
|
<div class="card__header_image mobile">
|
|
|
|
|
<img class="woman" src="./images/illustration-woman-online-mobile.svg" alt="">
|
|
|
|
|
<img class="background" src="./images/bg-pattern-mobile.svg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- <div class="card__header_image_shadow"></div> -->
|
2022-03-22 12:41:22 +01:00
|
|
|
|
</div>
|
2022-09-15 02:36:33 +02:00
|
|
|
|
<!-- </header> -->
|
|
|
|
|
<article>
|
|
|
|
|
<div class="faq">
|
|
|
|
|
<h1 class="card__header">FAQ</h1>
|
|
|
|
|
<details>
|
|
|
|
|
<summary>How many team members can I invite?</summary>
|
|
|
|
|
<div class="faq__content">
|
|
|
|
|
You can invite up to 2 additional users on the Free plan. There is no limit on
|
|
|
|
|
team members for the Premium plan.
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
<details>
|
|
|
|
|
<summary>What is the maximum file upload size?</summary>
|
|
|
|
|
<div class="faq__content">
|
|
|
|
|
No more than 2GB. All files in your account must fit your allotted storage space. </div>
|
|
|
|
|
</details>
|
|
|
|
|
<details>
|
|
|
|
|
<summary>How do I reset my password?</summary>
|
|
|
|
|
<div class="faq__content">
|
|
|
|
|
Click “Forgot password” from the login page or “Change password” from your profile page.
|
|
|
|
|
A reset link will be emailed to you.
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
<details>
|
|
|
|
|
<summary>Can I cancel my subscription?</summary>
|
|
|
|
|
<div class="faq__content">
|
|
|
|
|
Yes! Send us a message and we’ll process your request no questions asked.
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
<details>
|
|
|
|
|
<summary> Do you provide additional support?</summary>
|
|
|
|
|
<div class="faq__content">
|
|
|
|
|
Chat and email support is available 24/7. Phone lines are open during normal business hours.
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
</div>
|
|
|
|
|
</article>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- </main> -->
|
2022-02-20 04:24:07 +01:00
|
|
|
|
|
2022-02-20 04:39:51 +01:00
|
|
|
|
<!-- <div class="attribution">
|
2022-09-15 02:36:33 +02:00
|
|
|
|
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
|
2022-02-20 04:39:51 +01:00
|
|
|
|
Coded by <a href="https://tarasis.net">Robert McGovern</a>.
|
|
|
|
|
</div> -->
|
2022-02-20 04:24:07 +01:00
|
|
|
|
</body>
|
2022-02-20 04:39:51 +01:00
|
|
|
|
|
2022-02-20 04:24:07 +01:00
|
|
|
|
</html>
|