forked from community/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpnum.html
More file actions
29 lines (29 loc) · 987 Bytes
/
impnum.html
File metadata and controls
29 lines (29 loc) · 987 Bytes
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
<!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>Función</title>
</head>
<body>
<header>
<h1>FUNCIÓN IMPRIMIR NÚMEROS DEL 1 AL 10</h1>
</header>
<main>
<section class="container">
<form action="../index.html">
<label for="">Haz click en "Mostrar" para ver numeros impresos del 1 al 10.</label>
<div class="botones">
<button type="button" class="boton" onclick="ope.Ejercicio66()">Mostrar</button>
<button type="submit" class="boton">Regresar</button>
</div>
<div id="resp" class="ocultar">
Esperando..
</div>
</form>
</section>
</main>
<script src="../js/main.js"></script>
</body>
</html>