forked from community/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontpa.html
More file actions
30 lines (30 loc) · 1.05 KB
/
contpa.html
File metadata and controls
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/estilos.css">
<title>Contar Elementos Pares</title>
</head>
<body>
<header>
<h1>CONTAR ELEMENTOS PARES</h1>
</header>
<main>
<section class="container">
<form action="../index.html">
<label for="">Ingresa números para contar los números pares (ej: 1,2,3,4,5). </label>
<input type="text" value="" id="n1" placeholder="Ingrese números" >
<div class="botones">
<button type="button" class="boton" onclick="ope.Ejercicio55()">Verificar</button>
<button type="submit" class="boton">Regresar</button>
</div>
<div id="resp" class="ocultar">
Comprobando:
</div>
</form>
</section>
</main>
<script src="../js/main.js"></script>
</body>
</html>