-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (74 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
97 lines (74 loc) · 2.73 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
<!DOCTYPE html5>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--importante-->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title> Mi segunda pagina con Bootstrap 4</title>
<!--Incluyendo Bootstrap 4-->
<link rel="stylesheet" type="text/css" href="css/styles.min.css">
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">-->
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3 text-center">Pricing</h1>
<p class="lead text-center">Quickly build an effective pricing table for your potential customers with this Bootstrap example. It's built with default Bootstrap components and utilities with little customization.</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-4">
<div class="card">
<h3 class="card-header text-center">Free</h3>
<div class="card-body">
<h1 class="card-title text-center">$0<small class="text-muted">/ mo</small>
</h1>
<ul class="card-text list-unstyled text-center">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</p>
<a href="#!" class="btn btn-primary btn-lg btn-block">Sign up for free</a>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<h3 class="card-header text-center">Pro</h3>
<div class="card-body">
<h1 class="card-title text-center">$15<small class="text-muted">/ mo</small></h1>
<ul class="card-text list-unstyled text-center">
<li>20 users included</li>
<li>10 GB of storage</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<a href="#!" class="btn btn-primary btn-lg btn-block">Get started</a>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<h3 class="card-header text-center">Enterprise</h3>
<div class="card-body">
<h1 class="card-title text-center">$29<small class="text-muted">/ mo</small></h1>
<ul class="card-text list-unstyled text-center">
<li>30 users included</li>
<li>15 GB of storage</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<a href="#!" class="btn btn-primary btn-lg btn-block">Contact us</a>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js" ></script>
<script src="js/popper.min.js" ></script>
<script src="js/boostrap.min.js" ></script>
</body>
</html>