-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·125 lines (96 loc) · 3.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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">
<title>Frontend Mentor | [Challenge Name Here]</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
</head>
<body>
<h1>Our Pricing</h1>
<div class="toggle-block">
<div class="annually-label inactive">Annually</div>
<div class="toggle-button">
<span class="toggle-button__control"></span>
</div>
<div class="monthly-label active">Monthly</div>
</div>
<div class="card-block">
<div class="card">
<div class="card-head">
Basic
</div>
<div class="card-body">
<div class="card-body__price">
<span class="cash-symbol">$</span>
<span monthly>19.99</span>
<span annually>199.99</span>
</div>
<div class="card-body__item">
<ul>
<li>500 GB Storage</li>
<li>2 Users Allowed</li>
<li>Send up to 3 GB</li>
</ul>
</div>
<div class="card-body__button">
<a href="#" class="primary-button">Learn More</a>
</div>
</div>
</div>
<div class="card card__main">
<div class="card-head">
Professional
</div>
<div class="card-body">
<div class="card-body__price">
<span class="cash-symbol">$</span>
<span monthly>24.99</span>
<span annually>249.99</span>
</div>
<div class="card-body__item">
<ul>
<li>1 TB Storage</li>
<li>5 Users Allowed</li>
<li>Send up to 10 GB</li>
</ul>
</div>
<div class="card-body__button">
<a href="#" class="secondary-button">Learn More</a>
</div>
</div>
</div>
<div class="card">
<div class="card-head">
Master
</div>
<div class="card-body">
<div class="card-body__price">
<span class="cash-symbol">$</span>
<span monthly>39.99</span>
<span annually>399.99</span>
</div>
<div class="card-body__item">
<ul>
<li>2 TB Storage</li>
<li>10 Users Allowed</li>
<li>Send up to 20 GB</li>
</ul>
</div>
<div class="card-body__button">
<a href="#" class="primary-button">Learn More</a>
</div>
</div>
</div>
</div>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/carolinavero" target="_blank">Carolina Vero Ferreira</a>.
</div>
</footer>
<script src="script.js"></script>
</body>
</html>