-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.37 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.37 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
<!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="css/style.css">
<title>Document</title>
</head>
<body>
<div class="main-content">
<div class="card">
<ul class="price list-center" >
<li class="grey">Free</li>
<li>$0/mo</li>
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
<a class="btn" href="#">Sign up for free</a>
</ul>
</div>
<div class="card">
<ul class="price">
<li class="grey"> Pro</li>
<li>$15/mo</li>
<li>20 users included</li>
<li>10 GB of storage</li>
<li>Priority email support</li>
<li>Help center access</li>
<a class="btn" href="#">Get Started</a>
</ul>
</div>
<div class="card">
<ul class="price">
<li class="grey">Enterprise</li>
<li>$29/mo</li>
<li>30 users included</li>
<li>15 GB of storage</li>
<li>Phone and email support</li>
<li>Help center access</li>
<li><a class="btn" href="#">Contact us</a></li>
</ul>
</div>
</div>
</body>
</html>