-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (83 loc) · 2.7 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
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="styles/styles.css" />
<script src="scripts/site.js" defer></script>
<title>Frontend Mentor | [Pricing Component with Toggle]</title>
</head>
<body>
<header>
<h1>Our Pricing</h1>
<div class="toggle-wrapper">
<span>Annually</span>
<input type="checkbox" id="toggle-price" class="toggle" />
<span>Monthly</span>
</div>
</header>
<main>
<article class="card">
<div class="inner-wrapper">
<h2 class="package-type">Basic</h2>
<p class="price active">$19.99</p>
<p class="price">$99.99</p>
<ul class="feature-list">
<li>500 GB Storage</li>
<li>2 Users Allowed</li>
<li>Send up to 3 GB</li>
</ul>
<button class="learn-more">Learn More</button>
</div>
</article>
<article class="card">
<div class="inner-wrapper">
<h2 class="package-type">Professional</h2>
<span class="price active">$24.99</span>
<span class="price">$249.99</span>
<ul class="feature-list">
<li>1 TB Storage</li>
<li>5 Users Allowed</li>
<li>Send up to 10 GB</li>
</ul>
<button class="learn-more">Learn More</button>
</div>
</article>
<article class="card">
<div class="inner-wrapper">
<h2 class="package-type">Master</h2>
<span class="price active">$39.99</span>
<span class="price">$399.99</span>
<ul class="feature-list">
<li>2 TB Storage</li>
<li>10 Users Allowed</li>
<li>Send up to 20 GB</li>
</ul>
<button class="learn-more">Learn More</button>
</div>
</article>
</main>
<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/seapagan" target="_blank"
>seapagan </a
>.
</footer>
</body>
</html>