-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.html
More file actions
141 lines (105 loc) · 3.62 KB
/
Copy pathcard.html
File metadata and controls
141 lines (105 loc) · 3.62 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<title>Bootstrap 5.0 Pricing Table</title>
<style>
.card1:hover {
background:#00ffb6;
border:1px solid #00ffb6;
}
.card1:hover .list-group-item{
background:#00ffb6 !important
}
.card2:hover {
background:#00C9FF;
border:1px solid #00C9FF;
}
.card2:hover .list-group-item{
background:#00C9FF !important
}
.card3:hover {
background:#ff95e9;
border:1px solid #ff95e9;
}
.card3:hover .list-group-item{
background:#ff95e9 !important
}
.card:hover .btn-outline-dark{
color:white;
background:#212529;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="container p-5">
<div class="row">
<div class="col-lg-4 col-md-12 mb-4">
<div class="card card1 h-100">
<div class="card-body">
<h5 class="card-title">Basic</h5>
<small class='text-muted'>Individual</small>
<br><br>
<span class="h2">$8</span>/month
<br><br>
<div class="d-grid my-3">
<button class="btn btn-outline-dark btn-block">Select</button>
</div>
<ul>
<li>Cras justo odio</li>
<li>Dapibus ac facilisis in</li>
<li>Vestibulum at eros</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 mb-4">
<div class="card card2 h-100">
<div class="card-body">
<h5 class="card-title">Standard</h5>
<small class='text-muted'>Small Business</small>
<br><br>
<span class="h2">$20</span>/month
<br><br>
<div class="d-grid my-3">
<button class="btn btn-outline-dark btn-block">Select</button>
</div>
<ul>
<li>Cras justo odio</li>
<li>Dapibus ac facilisis in</li>
<li>Vestibulum at eros</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 mb-4">
<div class="card card3 h-100">
<div class="card-body">
<h5 class="card-title">Premium</h5>
<small class='text-muted'>Large Company</small>
<br><br>
<span class="h2">$40</span>/month
<br><br>
<div class="d-grid my-3">
<button class="btn btn-outline-dark btn-block">Select</button>
</div>
<ul>
<li>Cras justo odio</li>
<li>Dapibus ac facilisis in</li>
<li>Vestibulum at eros</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>