-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepasando-html.html
More file actions
229 lines (213 loc) · 10.3 KB
/
repasando-html.html
File metadata and controls
229 lines (213 loc) · 10.3 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="En esta página estamos aprendiendoa html">
<title>Repasando HTML</title>
<link rel="stylesheet" href="estilos.css">
<link rel="icon" href="Imágenes/icono-pagina.svg">
<link rel="apple-touch-icon" href="Imágenes/icono-pagina.svg">
</head>
<body>
<h1 class="titulo">Aprendiendo HTML</h1>
<h2 class="indice" id="indice-2">Indice:</h2>
<ul type="circle">
<li><a href="repasando-html.html#encabezados">Encabezados</a></li>
<li><a href="repasando-html.html#etiquetas-de-texto-basicas">Etiqutas de texto basicas</a></li>
<li><a href="repasando-html.html#etiquetas-de-texto-semanticas">Etiquetas de texto semánticas</a></li>
<li><a href="repasando-html.html#etiquetas-de-salto">Etiquetas de salto</a></li>
<li><a href="repasando-html.html#etiquetas-de-formateo">Etiquetas de Formateo</a></li>
<li><a href="repasando-html.html#etiquetas-semanticas-estructurales">Etiquetas semánticas estructurales</a></li>
<li><a href="repasando-html.html#etiqueta-de-linea-vs-de-bloque">Etiqueta de línea vs etiqueta de bloque</a></li>
<li><a href="repasando-html.html#listas-ordenadas">Listas ordenadas</a></li>
<li><a href="repasando-html.html#listas-desordenadas">Listas desordenadas</a></li>
<li><a href="repasando-html.html#tablas">Tablas</a></li>
<li><a href="repasando-html.html#enlaces">Enlaces</a></li>
</ul>
<br><hr><br>
<!-- Titulos -->
<h2 id="encabezados">Tipos de encabezados</h2>
<h1>Título</h1>
<h2>Esto es un subtítulo</h2>
<h3>Más chico que el subtítulo</h3>
<h4>Me sigo achicando</h4>
<h5>Más pequeño todavía</h5>
<h6>Soy el mas pequeñito</h6>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<!-- Etiquetas de texto basicas -->
<h2 id="etiquetas-de-texto-basicas">Etiqutas de texto basicas</h2>
<p>
Palabras en: <b>Negrita</b>, <i>Cursiva</i>, <u>Subrayado</u>, e=mc<sup>2</sup>, H<sub>2</sub>O, <mark>Texto resaltado</mark>, <small>Letras pequeñas</small>.
</p>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<!-- Etiquetas de texto semánticas -->
<h2 id="etiquetas-de-texto-semanticas">Etiquetas de texto semánticas</h2>
<p>
<strong>Este texto es importante</strong>, <em>Este texto hace énfasis</em>
</p>
<blockquote>Sólo se que no se nada.</blockquote>
<cite>Sócrates.</cite><br>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><br><hr><br>
<!-- Etiquetas de salto -->
<h2 id="etiquetas-de-salto">Etiquetas de salto</h2>
<p class="colores coloresHexa">
Lorem ipsum dolor sit amet consectetur adipisicing elit. <br> Aut, molestias velit totam dolor eaque esse similique maiores magni ipsa nobis deleniti vero distinctio labore repellendus sit! Veniam aut aliquid quia.
</p>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<!-- Etiquetas de Formateo -->
<h2 id="etiquetas-de-formateo">Etiquetas de Formateo</h2>
<pre>
<P>
#Tareas por hacer:
<mark>En el curso:</mark>
- No faltar a clases.
- Repasar la teoría.
- Practicar ejercicios.
<mark>En la casa:</mark>
- Cortar el pasto.
- Hacer las compras.
- Pagar las cuentas.
</P>
</pre>
<pre>
<code>
Este texto está en formato de código
</code>
<code>
function clearScreen() {
document.getElementById("Respuesta: ").
value = "";
}
</code>
</pre>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<hr><br>
<!-- Etiquetas semánticas estructurales -->
<h2 id="etiquetas-semanticas-estructurales">Etiquetas semánticas estructurales</h2><br>
<div><b>DIV:</b> Es una etiqueta contenedora que no tiene semántica</div>
<header><b>HEADER:</b> Cabecera de un sitio web o una sección</header>
<main><b>MAIN:</b> Define la sección principal del documento, solo puede existir una por documento</main>
<footer><b>FOOTER:</b> Pié de página de un sitio web o una sección</footer>
<nav><b>NAV:</b> Representa un menú de navegación</nav>
<article><b>ARTICLE:</b> Representa una sección de autocontenido (que por sí sola se explica)</article>
<aside><b>ASIDE:</b> Representa contenido complementario o secundario</aside>
<section><b>SECTION:</b> Representa una sección de contenido genérico</section>
<address><b>ADDRESS:</b> Representa una dirección física</address>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<!-- Etiqueta de línea y de bloque -->
<h2 id="etiqueta-de-linea-vs-de-bloque">Etiqueta de línea y de bloque</h2><br>
<div class="div">
La etiqueta de bloque por excelencia es la DIV
</div>
<span class="span">
La etiqueta de linea por excelencia es la SPAN
</span>
<span>Hola soy otra SPAN</span>
<br><br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><br><hr><br>
<!-- <img src="/Imágenes/Boca campeon 2007.jpg" alt="Boca Campeón 2007">
<img src="/Imágenes/Boca campeon 2007.jpg" alt="Boca Campeón 2007"> -->
<h2 id="listas-ordenadas">Listas ordenadas</h2>
<h3>Estaciones del año</h3>
<ol>
<li>Primavera</li>
<li>Verano</li>
<li>Otoño</li>
<li>Invierno</li>
</ol>
<ol start="6">
<li>Primavera</li>
<li>Verano</li>
<li>Otoño</li>
<li>Invierno</li>
</ol>
<ol reversed>
<li>Primavera</li>
<li>Verano</li>
<li>Otoño</li>
<li>Invierno</li>
</ol>
<ol type="I">
<li>Primavera</li>
<li>Verano</li>
<li>Otoño</li>
<li>Invierno</li>
</ol>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<h2 id="listas-desordenadas">Listas desordenadas</h2>
<h3>Cosas por hacer</h3>
<ul type="square">
<li>Enviar informes 1° trimestre</li>
<li>Terminar PPT del módulo</li>
<li>Corregir evaluaciones</li>
<li>Entregar trabajo final del curso de IA</li>
</ul>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<h2 id="tablas">Tablas</h2><br>
<table>
<tr>
<td>PAÍS</td>
<td>CAPITAL</td>
<td>CONTINENTE</td>
</tr>
<tr>
<td>Japón</td>
<td>Tokio</td>
<td>Asía</td>
</tr>
<tr>
<td>Francia</td>
<td>París</td>
<td>Europa</td>
</tr>
<tr>
<td>Canadá</td>
<td>Otawa</td>
<td>América</td>
</tr>
</table>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<h2 id="enlaces">Enlaces</h2><br><br>
<div class="externos">
<a class="enlaces" href="nuevodoc.html" target="_blank">Por aquí visito el nuevo documento</a>
<br><br>
<a class="enlaces" href="https://tecnologiaeducativaargentina.blogspot.com/" target="_blank" rel="nofollow">Visitar página del profe Cielo!!</a>
<br><br><br>
</div>
<div class="wsp">
<a href="https://web.whatsapp.co" target="_blank"><img src="https://cusezar.com/wp-content/themes/cusezar/assets/img/icons/whatsapp-logo.png" alt="Esta imagen nos direcciona a whatsapp web" width="100" height="100"></a>
</div>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><br><hr><br>
<h4>Formulario de contacto</h4>
<input type="text" name="nombre" placeholder="Escribe tu nombre: " title="El nombre solo acepta letras y espacios en blanco" required><br>
<input type="text" name="correo" placeholder="Escribe tu correo electrónico: " title="Formato de correo inválido" required><br>
<textarea name="comentarios" cols="30" rows="10" required></textarea><br>
<input type="submit" name="Botón" value="Enviar consulta">
</form>
<br><a href="repasando-html.html#indice-2">Volver al Indice -)</a>
<br><hr><br>
<h2 id="probando-css">Probando CSS</h2>
<h3 id="subtítulo-1">Subtítulo 1</h3>
<h3 class="subtítulo-2 fondo">Subtítulo 2</h3>
<h3 class="subtítulo-3">Subtítulo 3</h3>
<p class="subtítulo-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. <br> Aut, molestias velit totam dolor eaque esse similique maiores magni ipsa nobis deleniti vero distinctio labore repellendus sit! Veniam aut aliquid quia.
</p>
<script src="app.js"></script> <!--Enlazar archivo JavaScript-->
<script>
console.log("Este texto esta en el archivo INDEX");
</script>
</body>
</html>