-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.67 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
<!DOCTYPE html>
<head>
<script src="scripts.js" defer></script>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="https://github.com/AirTechWick"><img id="gitHubImg" src="github.svg">
</a>
<div id="pageWrapper">
<div id="housing">
<div id="display">
<div id="displayText">0</div>
</div>
<div>
<div id="optionGroup">
<div class="option" id="clear" value="clear">Clear</div>
<div class="option" id="delete" value="delete">Delete</div>
</div>
</div>
<div id="buttonGroup">
<button class="button number" value="7">7</button>
<button class="button number" value="8">8</button>
<button class="button number" value="9">9</button>
<button class="button operator" value="÷">÷</button>
<button class="button number" value="4">4</button>
<button class="button number" value="5">5</button>
<button class="button number" value="6">6</button>
<button class="button operator" value="x">x</button>
<button class="button number" value="1">1</button>
<button class="button number" value="2">2</button>
<button class="button number" value="3">3</button>
<button class="button operator" value="-">-</button>
<button class="button number" value=".">.</button>
<button class="button number" value="0">0</button>
<button class="button" id="equalSign" value="=">=</button>
<button class="button operator" value="+">+</button>
</div>
</div>
</div>
</body>