-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPractica HTML de LaunchX.html
89 lines (58 loc) · 1.68 KB
/
Practica HTML de LaunchX.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
89
<!DOCTYPE html>
<html lang="en">
<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>Practica 1 LaunchX</title>
</head>
<body>
<!-- Headings -->
<h1>Bienvenidos Explorers</h1>
<h2>Bienvenidos Explorers</h2>
<!-- parrafos -->
<p>Esto es un parrafo Explorers Esto es un parrafo <br>ExplorersEsto es un parrafo Explorers Esto es un parrafo Explorers
</p>
<p>Parrafo 2 Parrafo 2 Parrafo 2 Parrafo 2 Parrafo 2</p>
<!-- Link/Enlaces -->
<a href="https://github.com/Launch-X-Latam" target="blank">Link a LaunchX</a> <br>
<!-- Imágenes -->
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Pyramidal_silk_tea_bag.jpg/440px-Pyramidal_silk_tea_bag.jpg" alt="Bolsa de té piramidal" width="450px" height="450px">
<!-- Tablas -->
<table>
<tr>
<th>Compañia</th>
<th>Contacto</th>
<th>Pais</th>
</tr>
<tr>
<td>Tzintzun</td>
<td>Miguel Angel</td>
<td>Mexico</td>
</tr>
<td>Chá</td>
<td>Josiry</td>
<td>Islandia</td>
<tr>
</tr>
</table>
<!-- Listas -->
<ul>
<li>Cafe</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>
</dl>
</body>
</html>