-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (68 loc) · 2.69 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
<!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">
<link rel="stylesheet" href="/pricing-component-with-toggle/style.css">
<title>Pricing Component with togle</title>
</head>
<body>
<main class="wrapper">
<section class="heading">
<h1>Our Pricing</h1>
<div class="pricing_options">
<p>Annually</p>
<label class="pricing_toggle">
<input class="toggle_outer" type="checkbox" checked aria-checked="true"
aria-label="Toggle Annually Billing" />
<span class="toggle"></span>
</label><!-- pricing toggle-->
<p>Monthly</p>
</div><!-- pricing options-->
</section><!-- heading-->
<section class="pricing_table">
<div class="table">
<h3>Basic</h3>
<p><span class="monthly" aria-label="Monthly Pricing">$19.99</span><span class="annually"
aria-label="Annual Pricing">$199.99</span></p>
<ul>
<li class="features">500 GB Storage</li>
<li class="features">2 Users Allowed</li>
<li class="features">Send up to 3GB</li>
</ul>
<a href="#" class="btn btn_filled btn_a">Learn More</a>
</div>
<div class="table">
<h3>Professional</h3>
<p><span class="monthly" aria-label="Monthly Pricing">$24.99</span><span class="annually"
aria-label="Annual Pricing">$249.99</span></p>
<ul>
<li class="features">1 TB Storage</li>
<li class="features">5 Users Allowed</li>
<li class="features">Send up to 10GB</li>
</ul>
<a href="#" class="btn btn_empty btn_a">Learn More</a>
</div>
<div class="table">
<h3>Master</h3>
<p><span class="monthly" aria-label="Monthly Pricing">$39.99</span><span class="annually"
aria-label="Annual Pricing">$399.99</span></p>
<ul>
<li class="features">2 TB Storage</li>
<li class="features">10 Users Allowed</li>
<li class="features">Send up to 20GB</li>
</ul>
<a href="#" class="btn btn_filled btn_a">Learn More</a>
</div>
</section>
</main><!-- wrapper-->
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor.</a> Coded by <a
href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>
</footer>
<script src="/pricing-component-with-toggle/script.js"></script>
</body>
</html>