-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (95 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Pricing Table</title>
<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">
<style>
body {
font-family: 'Sono', sans-serif;
}
.pricing-container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
gap: 2rem;
}
.pricing-plan{
flex: 1;
max-width: 400px;
padding: 20px;
background-color: antiquewhite;
border-radius: 5%;
text-align: center;
}
.plan-title{
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.plan-price{
font-size: 40px;
font-weight:bold;
margin-bottom: 10px;
}
.plan-features{
text-align: center;
list-style: none;
padding: 0;
margin: 0;
margin-bottom: 10px;
}
.plan-features li{
margin-bottom: 20px;
}
.plan-button{
padding: 10px ;
border-radius: 5%;
font-weight: bold;
background-color: violet;
}
@media (max-width: 1250px) {
.pricing-container{
flex-direction: column;
height: 100%;
}
}
</style>
</head>
<body>
<div class="pricing-container">
<div class="pricing-plan">
<div class="plan-title">Basic</div>
<div class="plan-price">$9.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</a>
</div>
<div class="pricing-plan">
<div class="plan-title">Standard</div>
<div class="plan-price">$19.99/month</div>
<ul class="plan-features">
<li>✅ 50GB Storage</li>
<li>✅ 5 Users</li>
<li>✅ Phone & Email Support</li>
</ul>
<button class="plan-button">Sign Up</a>
</div>
<div class="pricing-plan">
<div class="plan-title">Premium</div>
<div class="plan-price">$49.99/month</div>
<ul class="plan-features">
<li>✅ 100GB Storage</li>
<li>✅ 10 Users</li>
<li>✅ 24/7 Support</li>
</ul>
<button class="plan-button">Sign Up</a>
</div>
</div>
</body>
</html>