-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 2.14 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calculate!</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="display">
<div id="displayText"></div>
<div id="displayOutput"></div>
</div>
<div class="calculate">
<div id="rowOne">
<input type="button" class="button" id="clear" value="C">
<input type="button" class="button" id="division" value="/">
<input type="button" class="button" id="multiplication" value="*">
<input type="button" class="button" id="backspace" value="←">
</div>
<div id="rowTwo">
<input type="button" class="button" id="seven" value="7">
<input type="button" class="button" id="eight" value="8">
<input type="button" class="button" id="nine" value="9">
<input type="button" class="button" id="subtraction" value="-">
</div>
<div id="rowThree">
<input type="button" class="button" id="four" value="4">
<input type="button" class="button" id="five" value="5">
<input type="button" class="button" id="six" value="6">
<input type="button" class="button" id="addition" value="+">
</div>
<div id="rowFour">
<div id="rowFourDiv">
<div id="rowFourDivOne">
<input type="button" class="button" id="one" value="1">
<input type="button" class="button" id="two" value="2">
<input type="button" class="button" id="three" value="3">
</div>
<div id="rowFourDivTwo">
<input type="button" class="button" id="zero" value="0">
</div>
</div>
<input type="button" class="button" id="equals" value="=">
</div>
</div>
<div id="footer">a project by <a href="https://krishnams0ni.github.io/" target="_blank">krishnams0ni</a>,
view
page <a href="https://github.com/krishnams0ni/odin_calculator" target="_blank">source</a></div>
</body>
</html>