forked from pratyushmp/code_opensource_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample7.html
More file actions
33 lines (26 loc) · 1.21 KB
/
Copy pathexample7.html
File metadata and controls
33 lines (26 loc) · 1.21 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
<!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/example7.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 COMBINACION DE TAMAÑOS -->
<div class="container">
<div class="row">
<div id="left" class="col-6 col-md-4">Deserunt minim iis incurreret cohaerescant iis ab ab </div>
<div id="central" class="col-6 col-md-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
<div id="right" class="col-6 col-md-4">Nulla ita qui sint officia est qui sunt firmissimum ad labore ab officia,</div>
</div>
</div>
<button id="previous" class="btn btn-outline-danger">
<a href="example6.html">Previous example</a>
</button>
<button id="next" class="btn btn-outline-success">
<a href="example8.html">Next example</a>
</button>
</body>
</html>