-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Funciones y eventos</title>
<link rel="shortcut icon" href="img/F.jpg" type="image/x-icon">
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header id="title">
<h2 id="main-header">CALCULADORA</h2>
</header>
<main class="calculadora">
<div class="buttons">
<label for="input-number1">Introduce un número:</label>
<div><input type="text" id="input-number1" placeholder="número"></div>
</div>
<div class="operation">
<button id="button-add"> + </button>
<button id="button-substract"> - </button>
<button id="button-multiply"> x </button>
<button id="button-divide"> / </button>
</div>
<div class="buttons">
<label for="input-number2">Introduce otro número:</label>
<div><input type="text" id="input-number2" placeholder="número"></div>
</div>
<h3 id="equal">Resultado: </h3>
</main>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>