This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
80 lines (74 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Frontend Mentor - Pricing Component With Toggle">
<meta name="keywords" content="Pricing Component With Toggle, Frontend Mentor">
<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="styles.css">
<title>Pricing Component With Toggle</title>
</head>
<body>
<header>
<h1> Our Pricing</h1>
<nav>
<p>Annually</p>
<button class="toggle-area monthly">
<div class="toggle-btn"></div>
</button>
<p>Monthly</p>
</nav>
</header>
<main>
<section class="pricing-container">
<!-- Container 1 -->
<article class="pricing container-1">
<h2>Basic</h2>
<p class="price-1"><span class="dollar-sign">$</span>19.99</p>
<ul>
<hr>
<li> 500 GB Storage</li>
<hr>
<li> 2 Users Allowed</li>
<hr>
<li> Send up to 3 GB</li>
<hr>
</ul>
<button>Learn more</button>
</article>
<!-- Container 2 -->
<article class="pricing container-2">
<h2>Professional</h2>
<p class="price-2"> <span class="dollar-sign">$</span>24.99</p>
<ul>
<hr>
<li> 1 TB Storage</li>
<hr>
<li> 5 Users Allowed</li>
<hr>
<li> Send up to 10 GB</li>
<hr>
</ul>
<button>Learn more</button>
</article>
<!-- Container 3 -->
<article class="pricing container-3">
<h2>Master</h2>
<p class="price-3"><span class="dollar-sign">$</span>39.99</p>
<ul>
<hr>
<li> 2 TB Storage</li>
<hr>
<li>10 Users Allowed</li>
<hr>
<li> Send up to 20 GB</li>
<hr>
</ul>
<button>Learn more</button>
</article>
</section>
</main>
<script src="app.js"></script>
</body>
</html>