-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Pricing Component With Toggle</title>
</head>
<body>
<header>
<h1>Our Pricing</h1>
<div class="toggle-container">
<span>Annually</span>
<div class="toggle">
<div class="slider"></div>
</div>
<span>Monthly</span>
</div>
</header>
<main>
<section class="card">
<span tabindex="0">Basic</span>
<h2><span tabindex="0">$</span> 19<span class="annual">9</span>.99</h2>
<hr>
<p>500 GB Storage</p>
<hr>
<p>2 Users Allowed</p>
<hr>
<p>Send up to 3 GB</p>
<hr>
<a href="#">Learn more</a>
</section>
<section class="card middle">
<span tabindex="0">Professional</span>
<h2><span tabindex="0">$</span> 24<span class="annual">9</span>.99</h2>
<hr>
<p>1 TB Storage</p>
<hr>
<p>5 Users Allowed</p>
<hr>
<p>Send up to 10 GB</p>
<hr>
<a href="#">Learn more</a>
</section>
<section class="card">
<span tabindex="0">Master</span>
<h2><span tabindex="0">$</span> 39<span class="annual">9</span>.99</h2>
<hr>
<p>2 TB Storage</p>
<hr>
<p>10 Users Allowed</p>
<hr>
<p>Send up to 20 GB</p>
<hr>
<a href="#">Learn more</a>
</section>
</main>
<footer>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" rel="noopener">Frontend Mentor</a>.
Coded by <a href="https://www.facebook.com/ANT1D0t35" target="_blank" rel="noopener">Rocky</a>.
</footer>
<script src="app.js"></script>
</body>
</html>