-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<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=Sono:wght@400;700&display=swap" rel="stylesheet">
<title>Flexbox Pricing Table</title>
</head>
<body>
<!-- DIV PLAN -->
<div class="pricing-container">
<!-- BASIC PLAN -->
<div class="pricing-plan">
<div class="plan-title">Basic</div>
<div class="plan-price">$11.99/month</div>
<ul class="plan-features">
<li>✅ 10GB Storage</li>
<li>✅ 1 User</li>
<li>🚫 Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
<!-- STANDARD PLAN -->
<div class="pricing-plan">
<div class="plan-title">Standard</div>
<div class="plan-price">$29.99/month</div>
<ul class="plan-features">
<li>✅ 10GB Storage</li>
<li>✅ 5 User</li>
<li>✅ Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
<!-- PREMIUM PLAN -->
<div class="pricing-plan">
<div class="plan-title">Premium</div>
<div class="plan-price">$59.99/month</div>
<ul class="plan-features">
<li>✅ 200GB Storage</li>
<li>✅ 10 User</li>
<li>✅ Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
</div>
</body>
</html>