-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.html
More file actions
54 lines (51 loc) · 2.25 KB
/
bootstrap.html
File metadata and controls
54 lines (51 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="bootstrap.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">Free</div>
<div class="card-body">
<h4 class="card-title">$0 / mo</h2>
<p class="card-text">
10 users included<br>
2 GB of storage<br>
Email support<br></p>
<a href="#" class="btn btn-outline-primary">Sign up for free</a>
</div>
</div>
<div class="card col-sm-5 col-md-3 mb-3 me-3">
<div class="card-header">Pro</div>
<div class="card-body">
<h4 class="card-title">$15 / mo</h2>
<p class="card-text">
20 users included<br>
10 GB of storage<br>
Priority email support<br></p>
<a href="#" class="btn btn-primary">Get Started</a>
</div>
</div>
<div class="card col-sm-5 col-md-3 mb-3 me-3">
<div class="card-header">Enterprise</div>
<div class="card-body">
<h4 class="card-title">$29 / mo</h2>
<p class="card-text">
30 users included<br>
15 GB of storage<br>
Phone & email support<br></p>
<a href="#" class="btn btn-primary">Contact Us</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>