-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
86 lines (84 loc) · 2.6 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
85
86
<!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="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | [Pricing Component]</title>
</head>
<body>
<!-- BACKGROUNDS-->
<div class="background-top">
<img src="./images/bg-top.svg" alt="background-top" />
</div>
<div class="background-bottom">
<img src="./images/bg-bottom.svg" alt="background-bottom" />
</div>
<!-- TOGGLE -->
<div class="toggle-container">
<h2 class="toggle-title">Our Pricing</h2>
<div class="toggle">
<p>Annually</p>
<label class="toggle-box">
<input type="checkbox" />
<span class="slider round"></span>
</label>
<p>Monthly</p>
</div>
</div>
<!-- CARDS -->
<div class="cards">
<div class="card card-one">
<h4 class="title">Basic</h4>
<h1 class="price monthly">$19.99</h1>
<h1 class="price yearly">$199.99</h1>
<ul class="benefits">
<li>500 GB Storage</li>
<li>2 User Allowed</li>
<li>Send up to 3GB</li>
</ul>
<button class="button">Learn More</button>
</div>
<div class="card card-two">
<h4 class="title">Professional</h4>
<h1 class="price monthly">$24.99</h1>
<h1 class="price yearly">$249.99</h1>
<ul class="benefits">
<li>1 TB Storage</li>
<li>5 Users Allowed</li>
<li>Send up to 10GB</li>
</ul>
<button class="button">Learn More</button>
</div>
<div class="card card-three">
<h4 class="title">Master</h4>
<h1 class="price monthly">$39.99</h1>
<h1 class="price yearly">$399.99</h1>
<ul class="benefits">
<li>2 TB Storage</li>
<li>10 Users Allowed</li>
<li>Send up to 20GB</li>
</ul>
<button class="button">Learn More</button>
</div>
</div>
<!--<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Your Name Here</a>.
</div>-->
<script src="./app.js"></script>
</body>
</html>