forked from community/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunparimp.html
More file actions
30 lines (30 loc) · 1.03 KB
/
funparimp.html
File metadata and controls
30 lines (30 loc) · 1.03 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>Par o Impar</title>
</head>
<body>
<header>
<h1>FUNCIÓN PAR O IMPAR</h1>
</header>
<main>
<section class="container">
<form action="../index.html">
<label for="">Ingrese un número para determinar si es par o impar.</label>
<input type="number" value="" id="n1" placeholder="Ingrese número" >
<div class="botones">
<button type="button" class="boton" onclick="ope.Ejercicio61()">Resultado</button>
<button type="submit" class="boton">Regresar</button>
</div>
<div id="resp" class="ocultar">
Resultado:
</div>
</form>
</section>
</main>
<script src="../js/main.js"></script>
</body>
</html>