-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculadora.html
49 lines (47 loc) · 1.45 KB
/
Calculadora.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
<!DOCTYPE html>
<html lang="en">
<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">
<script src="Calculadora.js" defer></script>
<style>
body{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-align: center;
background-image: url(imagen2.jpg);
}
h1{
margin-top: 10%;
color: rgb(255, 255, 255);
font-size: 75px;
}
input{
display: block;
margin: auto;
margin-bottom: 30px;
font-size: 30px;
text-align: center;
}
p{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 23px;
}
#calcular{
border-color: blue;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-color: rgb(197, 234, 255);
width: 190px;
}
</style>
<title>Calculadora</title>
</head>
<body>
<h1>Calculadora</h1>
<input type="text" id="num1" placeholder="Número 1: ">
<input type="text" id="operacion" placeholder="Operación: (+, -, *, /)">
<input type="text" id="num2" placeholder="Número 2: ">
<input type="submit" value="Calcular" id="calcular">
<p id="resultado"></p>
</body>
</html>