forked from community/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculadora.html
More file actions
34 lines (34 loc) · 1.33 KB
/
calculadora.html
File metadata and controls
34 lines (34 loc) · 1.33 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
<!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>Calculadora</title>
</head>
<body>
<header>
<h1>CALCULADORA</h1>
</header>
<main>
<section class="container">
<form action="../index.html">
<label for="">Ingrese el primer número</label>
<input type="number" value="" id="n1" placeholder="Ingrese el primer valor" >
<label for="">Ingrese un operador(+,-,*,/)</label>
<input type="text" value="" id="operador" placeholder="Ingrese (+,-,*,/)">
<label for="">Ingrese el segundo número</label>
<input type="number" value="" id="n2" placeholder="Ingrese el segundo valor">
<div class="botones">
<button type="button" class="boton" onclick="ope.Ejercicio14()">Resultado</button>
<button type="submit" class="boton">Regresar</button>
</div>
<div id="resp" class="ocultar">
Resultado de la operación:
</div>
</form>
</section>
</main>
<script src="../js/main.js"></script>
</body>
</html>