-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMB.html
58 lines (50 loc) · 1.34 KB
/
MB.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="StyleSheet" href="MB.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MB</title>
</head>
<body>
<header>
<h1>Calculadora Básica</h1>
</header>
<div class="calculadora">
<form>
<input id="num1" type="number" class="casilla" placeholder="Número 1" />
<input id="num2" type="number" class="casilla" placeholder="Número 2" />
<p id="resultado"></p>
<button
onclick="operaciones('sumar'); return false;"
class="btn btn-primary btn-lg btn-block"
type="submit"
>
+
</button>
<button
onclick="operaciones('restar'); return false;"
class="btn btn-primary btn-lg btn-block"
type="submit"
>
-
</button>
<button
onclick="operaciones('multiplicar'); return false;"
class="btn btn-primary btn-lg btn-block"
type="submit"
>
x
</button>
<button
onclick="operaciones('dividir'); return false;"
class="btn btn-primary btn-lg btn-block"
type="submit"
>
/
</button>
</form>
</div>
<script src="MB.js"></script>
</body>
</html>