-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<script src="app.js" defer></script>
</head>
<body>
<main>
<div class ="credit">
<p>Calculator Webpage by Ciara Cade © 2023</p>
</div>
<div class="calculator">
<div class="topsection">
<div class="screen">
<span class="output">
0
</span>
</div>
<div>
<button class="button" id="clear">C</button>
</div>
</div>
<div class="touchpad">
<div class="buttons">
<button class="button" id="seven">7</button>
<button class="button" id="eight">8</button>
<button class="button" id="nine">9</button>
<button class="button" id="division"> ÷</button>
<button class="button" id="four">4</button>
<button class="button" id="five">5</button>
<button class="button" id="six">6</button>
<button class="button" id="multiply">x</button>
<button class="button" id="one">1</button>
<button class="button" id="two">2</button>
<button class="button" id="three">3</button>
<button class="button" id="minus">-</button>
<button class="button" id="zero">0</button>
<button class="button" id="decimal">.</button>
<button class="button" id="plus">+</button>
<button class="button" id="equals">=</button>
</div>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>