-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Price Component</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/124816636a.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="toggle-section">
<h1>Our Pricing</h1>
<div class="toggle-row">
<p>Annually</p>
<div class="btn">
<div class="year-btn circle active"></div>
<div class="month-btn circle"></div>
</div>
<p>Monthly</p>
</div>
</div>
<div class="main">
<div class="section1 section">
<h4>Basic</h4>
<h1 id="basic"><span>$</span>199.99</h1>
<hr size="1" noshade="">
<p>500 GB Storage</p>
<hr size="1" noshade="">
<p>2 Users Allowed</p>
<hr size="1" noshade="">
<p>Send Upto 3GB</p>
<hr size="1" noshade="">
<button>LEARN MORE</button>
</div>
<div class="section2 section">
<h4>Professional</h4>
<h1 id="professional"><span>$</span>249.99</h1>
<hr size="1" noshade="">
<p>1 TB Storage</p>
<hr size="1" noshade="">
<p>5 Users Allowed</p>
<hr size="1" noshade="">
<p>Send Upto 10GB</p>
<hr size="1" noshade="">
<button>LEARN MORE</button>
</div>
<div class="section3 section">
<h4>Master</h4>
<h1 id="master"><span>$</span>399.99</h1>
<hr size="1" noshade="">
<p>2 TB Storage</p>
<hr size="1" noshade="">
<p>10 Users Allowed</p>
<hr size="1" noshade="">
<p>Send Upto 20GB</p>
<hr size="1" noshade="">
<button>LEARN MORE</button>
</div>
</div>
</body>
</html>