-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricingProjectTable.html
More file actions
142 lines (131 loc) · 4.41 KB
/
pricingProjectTable.html
File metadata and controls
142 lines (131 loc) · 4.41 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@font-face {
font-family: 'Custom';
src: url('./Single_Day/SingleDay-Regular.ttf') format('truetype');
}
body{
color: black;
font-family: Custom;
font-size: 30px;
background-color: rgb(189, 187, 187);
}
img{
width: 20px;
height: 20px;
}
@media (min-width: 1201px){
.container{
display: flex;
gap: 30px;
margin-top: 200px;
padding-left: 400px;
flex-wrap: wrap;
}
.one, .two, .three{
background-color: white;
border: 5px solid rgb(189, 187, 187);
border-radius: 10%;
padding: 30px;
}
h3{
text-align: center;
}
ul{
list-style-type: none;
padding-left: 100px;
margin-top: 20px;
}
h1{
margin-top: 0px;
margin-bottom: 0px;
}
button{
background-color: orange;
padding: 13px;
margin-left: 150px;
border-radius: 15px;
}
}
@media (max-width: 1200px){
.container{
display: flex;
gap: 30px;
flex-direction: column;
}
.one, .two, .three{
background-color: white;
padding: 30px;
border-radius: 10%;
}
.one{
margin: 70px 130px 0px 130px;
}
.two{
margin: 0px 130px 0px 130px;
}
.three{
margin: 0px 130px 70px 130px;
}
h3{
text-align: center;
}
h1{
padding-left: 20px;
margin-bottom: 20px;
margin-top: 0px;
}
ul{
list-style-type: none;
padding-left: 100px;
margin-top: 0px;
}
button{
background-color: orange;
padding: 13px;
margin-left: 150px;
border-radius: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="one">
<h3>Basic</h3>
<h1>$11.99 / month</h1>
<ul>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 10GB Storage</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 1 User</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> Support</li>
</ul>
<button>Sign Up</button>
</div>
<div class="two">
<h3>Standard</h3>
<h1>$19.99 / month</h1>
<ul>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 50GB Storage</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 5 User</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> Phone & Email Support</li>
</ul>
<button>Sign Up</button>
</div>
<div class="three">
<h3>Premium</h3>
<h1>$49.99 / month</h1>
<ul>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 100GB Storage</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 10 User</li>
<li> <img src="https://icon-library.com/images/green-tick-icon/green-tick-icon-6.jpg" alt="bullet"> 24/7 Support</li>
</ul>
<button>Sign Up</button>
</div>
</div>
</body>
</html>