-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontendedores.html
74 lines (67 loc) · 2.36 KB
/
contendedores.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
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
<!DOCTYPE html>
<html lang="en">
<!-- Cabecera del documento -->
<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>Contenedores</title>
<!-- CARGAR HOJA DE ESTILO -->
<link rel="stylesheet" href="css/estilo.css">
</head>
<!-- Cuerpo del documento -->
<body>
<h1 id="titulo">CONTENEDORES</h1>
<h1 >Titutulo 2 H1</h1>
<p >
Lorem ipsum dolor sit amet consectetur adipisicing elit. <span class="negrilla">Laboriosam</span> exercitationem distinctio sunt voluptas ipsam molestias nobis repudiandae, maiores iusto esse quam commodi quasi minus libero natus consequuntur perspiciatis. Eligendi,<span class="negrilla"> quas dolores,</span> ea tenetur est doloribus dolorum laudantium quia commodi nesciunt excepturi eos? Praesentium cumque qui itaque eveniet aliquid omnis?
</p>
<span class="negrilla">SPAN </span>
<br>
<label class="negrilla">LABEL</label>
<!-- CONTENEDORES-->
<!-- CONTENEDOR CABECERA -->
<div id="cabecera">
<!-- Contenedor Hijo 1 -->
<div id="contText">
<span id="tituloCabecera" class="negrilla">MisionTic 2022</span>
<br>
<span id="subtitulo" class="negrilla">UPB</span>
</div>
<!-- Contenedor Hijo 2 -->
<div id="contImagen">
<!-- -->
<img src="https://res.cloudinary.com/dzxqhkyqd/image/upload/v1554871230/planet-express.png" alt="">
</div>
</div>
<!-- Contenedor Cuerpo -->
<div id="cuerpo">
<table>
<!-- FILA -->
<tr>
<!-- Cabecera de la tabla -->
<th>Nombre</th>
<th>Apellido</th>
<th>email</th>
<th>telefono</th>
</tr>
<!-- FILA -->
<tr>
<!-- Columnas -->
<td>Juan</td>
<td>Melo</td>
<td>lala@li.com</td>
<td>601-377070</td>
</tr>
<!-- FILA -->
<tr>
<!-- Columnas -->
<td>Daniel</td>
<td>Lunares</td>
<td>danilu@lou.com</td>
<td>601-560090</td>
</tr>
</table>
</div>
</body>
</html>