-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.-etiquetasBasicas.html
88 lines (74 loc) · 2.11 KB
/
1.-etiquetasBasicas.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Practica 1 LaunchX</title>
</head>
<body>
<!-- Headings -->
<h1>Titulos</h1>
<h1>Bienvenidos explores</h1>
<h2>Bienvenidos Explores</h2>
<!-- Parrafos -->
<h2>Parrafos</h2>
<p>Este es un parrafo para los explores <br> Este es un parrafo para los explores
Este es un parrafo para los explores Este es un parrafo para los explores
Este es un parrafo para los explores Este es un parrafo para los explores</p>
<p>Parrafo 2 Parrafo 2 Parrafo 2 Parrafo 2 Parrafo 2Parrafo 2Parrafo 2Parrafo 2</p>
<!-- Links / Enlaces -->
<h1> Enlaces </h1>
<a href="https://github.com/LaunchX-InnovaccionVirtual" target="blank">Link a
LaunchX <img src="https://i.imgur.com/840T6os.jpeg" alt="Perritos lindos" width="350px"></a>
<br>
<!-- Imágenes -->
<h2>Imagenes </h2>
<a href="https://www.youtube.com/watch?v=HheCpjv4DMM" target="_blank">
<img src="https://i.imgur.com/840T6os.jpeg" alt="Fedelobo" width="350px">
</a>
<br>
<!-- Tablas -->
<h2>Tablas</h2>
<table>
<tr>
<th>Compañía</th>
<th>Contacto</th>
<th>Pais</th>
</tr>
<tr>
<td>Pepsi</td>
<td>Tokio</td>
<td>Japon</td>
</tr>
<tr>
<td>Grupo modelo</td>
<td>Monterrey</td>
<td>Mexico</td>
</tr>
<tr>
<td>Liverpool</td>
<td>Mexico City</td>
<td>Mexico</td>
</tr>
</table>
<!-- Listas -->
<ul>
<li>Café</li>
<li>Arroz</li>
<li>leche</li>
<li>huevos</li>
</ul>
<ol>
<li>Alumno1</li>
<li>Alumno2</li>
<li>Alumno3</li>
</ol>
<dl>
<dt>Enchiladas</dt>
<dd>- Tortilla frita con salsa, rellena de pollo</dd>
<dt>Molletes</dt>
<dd>- Bolillo con frijoles y queso</dd>
</body>
</html>