rmcg.dev/projects/FrontendMentor/newbie/faq-accordion-card/index.html

80 lines
2.7 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2022-02-20 04:39:51 +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 -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
2022-02-20 04:39:51 +01:00
<title>Frontend Mentor | FAQ Accordion Card</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<!-- <style>
2022-02-20 04:39:51 +01:00
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style> -->
</head>
2022-02-20 04:39:51 +01:00
<body>
2022-09-16 00:13:03 +02:00
<!-- main was originally a div -->
<main class="card">
<header class="card__header">
<div class="card__header_image">
<img class="box desktop" src="./images/illustration-box-desktop.svg" alt="">
<img class="woman mobile" src="./images/illustration-woman-online-mobile.svg" alt="">
</div>
2022-09-16 00:13:03 +02:00
</header>
<article>
<div class="faq">
2022-09-16 00:13:03 +02:00
<h1 class="card__title">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 well 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>
2022-09-16 00:13:03 +02:00
</main>
2022-02-20 04:39:51 +01:00
<!-- <div class="attribution">
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> -->
</body>
2022-02-20 04:39:51 +01:00
</html>