-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (32 loc) · 1.46 KB
/
index.html
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
<!DOCTYPE html>
<html>
<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>titulo</title>
<link rel="stylesheet" href="css/estilo.css" media="">
</head>
<body>
<main class="contenedor">
<!-- Fila con tres columnas para los tamaños LG Y MD y una columna para los tamaños sm y xs-->
<section class="fila">
<article class="col-lg-2 col-md-2 col-sm-3 col-xs-12">..Logo..</article>
<article class="col-lg-6 col-md-5 col-sm-9 col-xs-12">..2..</article>
<article class="col-lg-4 col-md-5 col-sm-12 col-xs-12">..3..</article>
</section>
<!-- Fila con columnas de 3 para todos los tamaños -->
<section class="fila">
<article class="col-lg-4 col-md-4 col-sm-4 col-xs-4">..1..</article>
<article class="col-lg-4 col-md-4 col-sm-4 col-xs-4">..2..</article>
<article class="col-lg-4 col-md-4 col-sm-4 col-xs-4">..3..</article>
</section>
<!-- Fila con tres columnas para los tamaños LG Y MD y una columna para los tamaños sm y xs-->
<section class="fila">
<article class="col-lg-4 col-md-4 col-sm-12 col-xs-12">..1..</article>
<article class="col-lg-4 col-md-4 col-sm-12 col-xs-12">..2..</article>
<article class="col-lg-4 col-md-4 col-sm-12 col-xs-12">..3..</article>
</section>
</main>
</body>
</html>