-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
280 lines (240 loc) · 9.16 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Actividad 2</title>
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<div class="container">
<!-- ejercicio 1 -->
<section>
<h3>Ejercicio 1</h3>
<form class="form">
<section class="input">
<input class="edad" type="text" placeholder="Ingrese su Edad">
</section>
<button class="boton" type="submit">Comprobar</button>
</form>
</section>
<hr>
<!-- ejercicio 2 -->
<h3>Ejercicio 2</h3>
<section class="ejercicio2">
<table>
<thead>
<th>Nombre</th>
<th>Carnet</th>
<th>Examen 20%</th>
<th>Tareas 40%</th>
<th>Asistencia 10%</th>
<th>Investigacion 30%</th>
<th>Nota Final</th>
</thead>
<tbody class="table">
</tbody>
</table>
<form class="form2">
<section>
<label>Estudiante</label>
<input type="text" id="estudiante">
</section>
<section>
<label>Carnet Estudiante</label>
<input type="text" id="carnet">
</section>
<section>
<label>Nota de examen</label>
<input type="text" id="examen">
</section>
<section>
<label>Nota de Tareas</label>
<input type="text" id="tareas">
</section>
<section>
<label>Nota de Asistencia</label>
<input type="text" id="asistencia">
</section>
<section>
<label>Nota de Investigacion</label>
<input type="text" id="investigacion">
</section>
<button type="submit" class="boton btn">Comprobar</button>
</form>
</section>
<!-- ejercicio3 -->
<hr>
<h3>Ejercicio 3</h3>
<section>
<form class="form">
<section class="input">
<input type="text" placeholder="Ingrese su nombre" class="name">
<input type="text" placeholder="Ingrese su Salario" class="salario">
<select class="select categ" >
<option disabled selected>Elija una categoría</option>
<option>A 15%</option>
<option>B 30%</option>
<option>C 10%</option>
<option>D 20%</option>
</select>
</section>
<button class="boton btnCalS">Calcular</button>
</form>
</section>
<!-- ejercicio4 -->
<hr>
<h3>Ejercicio 4</h3>
<section class="ejercicio4">
<form class="form">
<section class="input sect">
<input class="numero1" type="text" placeholder="Ingrese un Numero">
</section>
<section class="input">
<input class="numero2" type="text" placeholder="Ingrese un Numero">
</section>
<button class="boton btn2" type="submit">Comprobar</button>
</form>
</section>
<!-- ejercicio 5 -->
<hr>
<h3>Ejercicio 5</h3>
<section>
<form class="form">
<section>
<select class="select select1">
<option disabled selected>Elija un auto</option>
<option>Ford Fiesta</option>
<option>Ford Focus</option>
<option>Ford Escape</option>
</select>
</section>
<button type="submit" class="boton btn3">Comprar</button>
</form>
</section>
<hr>
<!-- ejercicio 6 -->
<h3>Ejercicio 6</h3>
<h4 style="text-align: center;">Joven usted se encuentra en la ciudad de palma, a donde quiere ir?</h4>
<section>
<form class="form">
<section>
<select class="select select2">
<option disabled selected>Elija un Destino</option>
<option>La costa del Sol</option>
<option>Panchimalco</option>
<option>Puerto El triunfo</option>
</select>
<section class="data">
</section>
</section>
<button type="submit" class="boton btn4">Comprar</button>
</form>
</section>
<!-- ejercicio 7 -->
<hr>
<h3>Ejercicio 7</h3>
<section class="ejercicio7">
<form class="form">
<section class="input">
<label>Por favor adicione 10 numeros y luego dele click a conocer</label>
<input type="text" placeholder="Ingrese un numero" style="margin-top: 2rem;" class="numer">
</section>
<button class="boton btnAdd">Adicionar</button>
<button class="boton btnConocer">Conocer</button>
</form>
<table class="table2">
<thead>
<th>Numeros</th>
</thead>
<tbody class="tbody2">
</tbody>
</table>
</section>
<!-- ejercicio 8 -->
<hr>
<h3>Ejercicio 8</h3>
<section class="ejercicio8">
<form class="form formTabla">
<label>Por favor digite que tabla quiere ver</label>
<section class="input">
<input type="text" placeholder="Ingrese un numero" style="margin-top: 2rem;" class="numerT">
</section>
<button class="btnTabla boton">Ver</button>
</form>
<table class="table3">
<thead>
<tr><th class="encabezadoT"></th></tr>
</thead>
<tbody class="tbody3">
</tbody>
</table>
</section>
<!-- ejercicio 9 -->
<hr>
<h3>Ejercicio 9</h3>
<section class="ejercicio9">
<form class="form">
<section class="input">
<input type="text" class="grados" placeholder="Ingrese la temperatura">
</section>
<input type="submit" class="boton btnC" value="Ingresar">
</form>
</section>
<!-- Ejercicio 10 -->
<hr>
<h3>Ejercicio 10</h3>
<section class="dflex">
<form class="wrap form">
<section>
<section class="input">
<input type="text" class="eMañana" placeholder="Edades mañana" id="In1">
</section>
<input type="submit" class="boton btnMa" value="Ingresar">
</section>
<section>
<section class="input">
<input type="text" class="eTarde" placeholder="Edades tarde" id="In2">
</section>
<input type="submit" class="boton btnTar" value="Ingresar">
</section>
<section>
<section class="input">
<input type="text" class="eNoche" placeholder="Edades noche" id="In3">
</section>
<input type="submit" class="boton btnNo" value="Ingresar">
</section>
<section>
<button class="boton btnCalcular">Calcular</button>
</section>
</form>
<section class="tablas dflex">
<table>
<thead>
<tr><th>Mañana</th></tr>
</thead>
<tbody class="tb1">
</tbody>
</table>
<table>
<thead>
<tr><th>Tarde</th></tr>
</thead>
<tbody class="tb2">
</tbody>
</table>
<table>
<thead>
<tr><th>Noche</th></tr>
</thead>
<tbody class="tb3">
</tbody>
</table>
</section>
</section>
<section class="result"></section>
</div>
<script src="assets/javaScript/main.js"></script>
<script src="assets/javaScript/6-10.js"></script>
</body>
</html>