-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
43 lines (42 loc) · 2.21 KB
/
1.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name ="author" content ="UO270157" >
<meta name ="description" content ="calculadora milan" >
<meta name ="keywords" content ="calculadora, Milan" >
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" >
<title>Calculadora Milán</title>
<link rel="stylesheet" href="CalculadoraMilan.css"/>
</head>
<body>
<h1>Calculadora Milán</h1>
<form action='#' method='post' name='botones'>
<label for='pantalla'>Pantalla calculadora Milán</label>
<input type='text' id='pantalla' value='0.54030230586814' disabled='' title='pantalla'/>
<input type='submit' value='C' name='C'/>
<input type='submit' value='CE' name='CE'/>
<input type='submit' value='±' name='±'/>
<input type='submit' value='√' name='√'/>
<input type='submit' value='%' name='%'/>
<input type='submit' value='7' name='7'/>
<input type='submit' value='8' name='8'/>
<input type='submit' value='9' name='9'/>
<input type='submit' value='*' name='*'/>
<input type='submit' value='÷' name='÷'/>
<input type='submit' value='4' name='4'/>
<input type='submit' value='5' name='5'/>
<input type='submit' value='6' name='6'/>
<input type='submit' value='-' name='-'/>
<input type='submit' value='mrc' name='mrc'/>
<input type='submit' value='1' name='1'/>
<input type='submit' value='2' name='2'/>
<input type='submit' value='3' name='3'/>
<input type='submit' value='+' name='+'/>
<input type='submit' value='m-' name='m-'/>
<input type='submit' value='0' name='0'/>
<input type='submit' value='.' name='.'/>
<input type='submit' value='=' name='='/>
<input type='submit' value='m+' name='m+'/>
</form> </body>
</html>