-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (59 loc) · 1.84 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
<!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>
<main class="container">
<h3 class="title">Our Pricing</h3>
<div class="offers">
<span class="monthly">Annually</span>
<button class="toggle">
<div class="toggle_btn"></div>
</button>
<span class="annually">Monthly</span>
</div>
<div class="cards">
<div class="card">
<p>Basic</p>
<h1><small>$</small>19.99</h1>
<div class="tariff">
<h6>500 GB Storage</h6>
<h6>2 Users Allowed</h6>
<h6>Send Up to 3 GB</h6>
</div>
<button class="btn">Learn More</button>
</div>
<div class="card" id="blue">
<p>Professional</p>
<h1><small>$</small>24.99</h1>
<div class="tariff">
<h6>1 TB Storage</h6>
<h6>5 Users Allowed</h6>
<h6>Send Up to 10 GB</h6>
</div>
<button class="blueBtn">Learn More</button>
</div>
<div class="card">
<p>Master</p>
<h1><small>$</small>39.99</h1>
<div class="tariff">
<h6>2 TB Storage</h6>
<h6>10 Users Allowed</h6>
<h6>Send Up to 20 GB</h6>
</div>
<button class="btn">Learn More</button>
</div>
</div>
</main>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://linkedin.com/in/asliddin-amirov-02a359219">Asliddin Amirov</a>.
</footer>
</body>
<script src="script.js"></script>
</html>