-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
64 lines (59 loc) · 2.08 KB
/
bootstrap.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Page</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="boots.css">
</head>
<body>
<h1 class="text-center">Pricing</h1>
<p class="text-center">Please checkout our most effective payment models</p>
<div class="row text-center justify-content-evenly">
<div class="card col-sm-5 col-md-3 mb-3 me-3">
<div class="card-header">
<h4>Free</h4>
</div>
<div class="card-body">
<h1 class="card-title">$0 / mo</h1>
<ul class="list-unstyled">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
</ul>
<button href="*" class="btn btn-outline-primary">Sign up for free</button>
</div>
</div>
<div class="card col-sm-5 col-md-3 mb-3 me-3">
<div class="card-header">
<h4>Pro</h4>
</div>
<div class="card-body">
<h1 class="card-title">$ 15 / mo</h1>
<ul class="list-unstyled">
<li>20 users included</li>
<li>10 GB OF Storage</li>
<li>Priority email support</li>
</ul>
<button href="*" class="btn btn-primary">Get Started</button>
</div>
</div>
<div class="card col-sm-10 col-md-3 mb-3 me-3">
<div class="card-header">
<h4>Enterprise</h4>
</div>
<div class="card-body">
<h1 class="card-title">$29 / mo</h1>
<ul class="list-unstyled">
<li>30 users included</li>
<li>15 GB of storage</li>
<li>Phone & email support</li>
</ul>
<button href="#" class="btn btn-primary">Contact US</button>
</div>
</div>
</div>
</body>
</html>