-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.html
More file actions
54 lines (40 loc) · 1.77 KB
/
3.html
File metadata and controls
54 lines (40 loc) · 1.77 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html lang='es'>
<head>
<meta charset='UTF-8' />
<meta name ='viewport' content ='width=device-width, initial scale=1.0' />
<title>Calculadora RPN</title>
<link rel='stylesheet' type='text/css' href='CalculadoraRPN.css' />
</head>
<body>
<h1>Calculadora RPN</h1>
<form action='#' method='post'>
<label for='texto'>pantalla</label>
<textarea id='texto' disabled>0</textarea>
<input type='submit' name='sinh' value='sinh'>
<input type='submit' name='cosh' value='cosh'>
<input type='submit' name='tanh' value='tanh'>
<input type='submit' name='borrar' value='⌫'>
<input type='submit' name='sin' value='sin'>
<input type='submit' name='cos' value='cos'>
<input type='submit' name='tan' value='tan'>
<input type='submit' name='enter' value='enter'>
<input type='submit' name='7' value='7'>
<input type='submit' name='8' value='8'>
<input type='submit' name='9' value='9'>
<input type='submit' name='division' value='÷'>
<input type='submit' name='4' value='4'>
<input type='submit' name='5' value='5'>
<input type='submit' name='6' value='6'>
<input type='submit' name='multiplicacion' value='*'>
<input type='submit' name='1' value='1'>
<input type='submit' name='2' value='2'>
<input type='submit' name='3' value='3'>
<input type='submit' name='resta' value='-'>
<input type='submit' name='0' value='0'>
<input type='submit' name='punto' value='.'>
<input type='submit' name='resetearPila' value='reset'>
<input type='submit' name='suma' value='+'>
</form>
</body>
</html>