-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCalculator.html
More file actions
74 lines (49 loc) · 2.35 KB
/
Calculator.html
File metadata and controls
74 lines (49 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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">
<title>Calculator</title>
</head>
<body>
<center style="padding: 100px;">
<form>
<!-- <table> -->
<input type="text" name="text" style="padding: 15px;"> <br><br>
<!-- <tr> -->
<input type="button" value="7" style="padding: 10px;">
<input type="button" value="8" style="padding: 10px;">
<input type="button" value="9" style="padding: 10px;">
<input type="button" value="C" style="padding: 10px;">
<input type="button" value="AC" style="padding: 10px;">
<!-- </tr> -->
<br> <br>
<!-- <tr> -->
<input type="button" value="4" style="padding: 10px;">
<input type="button" value="5" style="padding: 10px;">
<input type="button" value="6" style="padding: 10px;">
<input type="button" value="*" style="padding: 10px;">
<input type="button" value="/" style="padding: 10px;">
<!-- </tr> -->
<br><br>
<!-- <tr> -->
<input type="button" value="1" style="padding: 10px;">
<input type="button" value="2" style="padding: 10px;">
<input type="button" value="3" style="padding: 10px;">
<input type="button" value="+" style="padding: 10px;">
<input type="button" value="-" style="padding: 10px;">
<!-- </tr> -->
<br><br>
<!-- <tr> -->
<input type="button" value="0" style="padding: 10px;">
<input type="button" value="." style="padding: 10px;">
<input type="button" value="EXP" style="padding: 10px;">
<input type="button" value="DEL" style="padding: 10px;">
<input type="button" value="=" style="padding: 10px;">
<!-- </tr> -->
<!-- </table> -->
</form>
</center>
</body>
</html>