-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.html
More file actions
60 lines (50 loc) · 2.26 KB
/
calculator.html
File metadata and controls
60 lines (50 loc) · 2.26 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
<!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>
<link rel="stylesheet" href="calc2.css">
</head>
<body>
<div class="content_table">
<table>
<div class="numbers">
<div id="display"> <td>
<input type="text" name="display" id="display"></td></tr> </div>
<tr id="t1">
<td> <input type="button" name="ac" value="AC" id="num"></td>
<td><input type="button" name="modulo" value="%"id="num"> </td>
<td > <input type="button" name="division" value="/"id="num"></td>
<td> </td>
</tr>
<tr id="t2">
<td><input type="button" name="one" value="1"id="num"></td>
<td><input type="button" name="two" value="2"id="num"></td>
<td><input type="button" name="three" value="3"id="num"></td>
<td><input type="button" name="multiplication" value="*"id="num"></td>
</tr><br>
<tr id="t3">
<td><input type="button" name="four" value="4"id="num"></td>
<td><input type="button" name="five" value="5"id="num"></td>
<td><input type="button" name="six" value="6"id="num"></td>
<td><input type="button" name="subtraction" value="-"id="num"></td>
</tr> <br>
<tr id="t4">
<td><input type="button" name="seven" value="7"id="num"></td>
<td><input type="button" name="eight" value="8"id="num"></td>
<td><input type="button" name="nine" value="9"id="num"></td>
<td><input type="button" name="addition" value="+"id="num"></td>
</tr><br>
<tr id="t5">
<td><input type="button" name="zero" value="0"id="num"></td>
<td><input type="button" name="decimal" value="."id="num"></td>
<td><input type="button" name="equals to" value="="id="num"></td>
<td> </td>
</tr>
</div>
</table>
</div>
</body>
</html>