forked from pratyushmp/code_opensource_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample8.html
More file actions
52 lines (45 loc) · 2.01 KB
/
Copy pathexample8.html
File metadata and controls
52 lines (45 loc) · 2.01 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/example8.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title></title>
</head>
<body>
<!-- EJEMPLO CREADO PARA MOSTRAR ALINEAMIENTO VERTICAL -->
<div class="container h-100">
<div class="row h-100 py-2">
<div class="col-6">
<div class="card h-100 border-primary">
<div class="card-body">
<h3 class="card-title">Normal</h3>
<p class="card-text">With supporting text below as a natural lead-in to additional content.
And this card has a little more text to make the col taller
</p>
<a href="#" class="btn btn-outline-secondary">Outline</a>
</div>
</div>
</div>
<div class="col-6 h-100">
<div class="card h-100 border-primary justify-content-center">
<div>
<div class="card-body">
<h3 class="card-title">Vertical Center</h3>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-outline-secondary">Outline</a>
</div>
</div>
</div>
</div>
</div>
</div>
<button id="previous" class="btn btn-outline-danger">
<a href="example7.html">Previous example</a>
</button>
<button id="next" class="btn btn-outline-success">
<a href="example9.html">Next example</a>
</button>
</body>
</html>