forked from rayann18/Bootstrap_projects.htm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex.htm
125 lines (114 loc) · 2.48 KB
/
flex.htm
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="Ryan" content="Author">
<title>FlexBox</title>
</head>
<link rel="stylesheet" href="">
<style>
body{
background-color: rgb(197, 127, 194);
font-family: 'Sono', sans-serif;
}
h1{
font-size: 3rem;
}
h2{
font-size: 2rem;
}
.container{
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
height: 100vh;
}
.container1{
flex: 1;
max-width: 400px;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
text-align: center;
}
.container2{
flex: 1;
max-width: 400px;
padding: 20px;
background-color:#f2f2f2;
border-radius: 5px;
text-align: center;
}
.container3{
flex: 1;
max-width: 400px;
padding: 20px;
background-color:#f2f2f2;
border-radius: 5px;
text-align: center;
}
div,div,div,div,ul{
list-style-type: none;
}
div,div,div,div,ul,li{
padding: 5px;
margin: 5px;
}
@media(max-width:1250px){
.container{
flex-direction: column;
height: 100%;
}
}
</style>
<body>
<div class="container">
<div class="container1">
<div class="plan-title" > <h1> Basic</h1></div>
<div class="plan-price"> <h2>$9.99/month</h2></div>
<ul class="plan-features">
<li>> 10GB Storage</li>
<li>> 1 User</li>
<li>∅ Support</li>
</ul>
<button style="background-color: #ff6600;
color: white;
border-radius: 5px;
border: none;
padding: 10px;
">Sign up</button>
</div>
<div class="container2">
<div><h1> Standard</h1></div>
<div><h2>$19.99/month</h2></div>
<ul>
<li>> 50GB Storage</li>
<li>> 5 Users</li>
<li>> Phone and email Support</li>
</ul>
<button style="background-color: #ff6600;
color: white;
border-radius: 5px;
border: none;
padding: 10px;
">Sign up</button>
</div>
<div class="container3">
<div><h1> Premium</h1></div>
<div><h2>$49.99/month</h2></div>
<ul>
<li>> 100GB Storage</li>
<li>> 10 User</li>
<li>> 24/7 Support</li>
</ul>
<button style="background-color: #ff6600;
color: white;
border-radius: 5px;
border: none;
padding: 10px;
">Sign up</button>
</div>
</div>
</body>
</html>