-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (288 loc) · 9.55 KB
/
index.html
File metadata and controls
314 lines (288 loc) · 9.55 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!-- --------------tarea 1--------------------------------------------------------------------------- -->
<!-- ----------------------------------------------------------------------------------------- -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>Hola Mundo</h1>
<a href="https://www.w3schools.com/" target="_blank"> W3schools</a>
<img src="logo.jpg" alt="logo html">
</body>
</html> -->
<!-- ----------------tarea 2------------------------------------------------------------------
---------------------------------------------------------------------------------- -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<h1>Hola mundo desde el titulo</h1>
<p>Hola mundo desde el parrafo</p>
</body>
</html> -->
<!-- -----------------tarea 3: LISTA------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p><strong>Mi lista ordenada</strong></p>
<div class="lista-ordenada">
<ol>
<li>Primer elemento de mi lista ordenada</li>
<li>Segundo elemento de mi lista ordenada</li>
<li>Tercer elemento de mi lista ordenada</li>
</ol>
</div>
<hr>
<div class="lista-no-ordenada">
<p><em>Mi lista NO ordenada</em></p>
<ul>
<li>Primer elemento de mi lista no ordenada</li>
<li>Segundo elemento de mi lista no odenada</li>
<li>Tercer elemento de mi<span id="texto personalizado"> lista no ordenada</span></li>
</ul>
</div>
</body>
</html> -->
<!-- -----------------tarea 4: TABLAS------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Edad</th>
</tr>
</thead>
<tbody>
<tr>
<td>Juan</td>
<td>36</td>
</tr>
<tr>
<td>Vero</td>
<td>34</td>
</tr>
<tr>
<td>Carlos</td>
<td>20</td>
</tr>
</tbody>
</table>
</body>
</html> -->
<!-- -----------------tarea 5 formularios------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="#" method="post">
<fieldset>
<label for="text1"> Nombre </label>
<input type="text" name="text1" id="text1">
</fieldset>
<fieldset>
<label for="text2"> Apellido </label>
<input type="text" name="text2" id="text2">
</fieldset>
<fieldset>
<label for="text3"> Email </label>
<input type="email" name="text3" id="text3">
</fieldset>
<fieldset>
<label> Color </label>
<select name='Seleccione un color'>
<option value="Seleccione un color">Seleccione un color </option>
<option value="verde">verde </option>
<option value="azul">azul </option>
</select>
</fieldset>
<fieldset>
<input class="tabla" type="radio" name="text" id="text4">
<label for="text4"> Talla S</label>
<input class="tabla" type="radio" name="text" id="text5">
<label for="text5"> Talla M</label>
<input class="tabla" type="radio" name="text" id="text6">
<label for="text6"> Talla L</label>
</fieldset>
<fieldset>
<label> Comentario </label>
<textarea name="comentario" rows="5" cols="40"></textarea>
</fieldset>
<fieldset>
<input type="submit" value="Pedir" />
</fieldset>
</form>
</body>
</html> -->
<!-- -----------------tarea 6 cajas------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Caja</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>
Este párrafo por defecto es representado en CSS con una caja en bloque.
Y <span>este elemento con una caja en línea</span>.
</p>
</body>
</html> -->
<!-- -----------------tarea 7 fondos------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Fondos CSS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="primer-contenedor">
<h1>Probando fondos en CSS</h1>
</div>
<div class="segundo-contenedor"></div>
<div class="tercer-contenedor"></div>
</body>
</html> -->
<!-- -----------------tarea 8 posicionamiento------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Posicionamiento</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class= "container">
<div class= "box"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
<h1>Aprendiendo de posicionamiento con CSS!</h1>
<div class="container2"></div>
<div class="container3"></div>
</body>
</html> -->
<!-- -----------------tarea 9 selectores CSS------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!--
<!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">
<link rel="stylesheet" href="style.css">
<title>Selectores</title>
</head>
<body>
<div class="container">
<h1>Titulo H1</h1>
</div>
<div class="container2">
<h2>Subtitulo con h2</h2>
<h3>corta descripcion con h3</h3>
</div>
<div class="container3">
<p>primer producto con etiqueta p</p>
<p>segundo producto con etiqueta p</p>
<p>tercer producto con etiqueta p</p>
<a href="https://www.google.com/">mi enlace de colores</a>
</div>
</body>
</html> -->
<!-- -----------------tarea 10 sombras------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Sombras</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="sombras">
<div class= "container">
<div class= "box"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
<h1>Sombras con CSS!</h1>
<div class="container2"></div>
<div class="container3"></div>
</div>
</body>
</html> -->
<!-- -----------------tarea 11 Gradientes------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!-- <!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>Posicionamiento</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class= "container">
<div class= "box"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
<h1>Aprendiendo de posicionamiento con CSS!</h1>
<div class="container2"></div>
<div class="container3"></div>
</body>
</html> -->
<!-- -----------------tarea 12 Media Queris------------------------------------------------------------------------
----------------------------------------------------------------------------------------- -->
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Cambiando estilos segun la pantalla</h1>
</body>
</html>