-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (48 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css"></link>
<title>Calculator</title>
</head>
<body>
<main>
<div class="calculator">
<div class="textArea">
<div class="count"></div>
<div class="answer">0</div>
</div>
<div class="buttons">
<button class="ac">AC</button>
<button class="bc">C</button>
<button class="mod operator">%</button>
<button class="division operator">÷</button>
<button class="seven number">7</button>
<button class="eight number">8</button>
<button class="nine number">9</button>
<button class="multiplication operator">×</button>
<button class="four number">4</button>
<button class="five number">5</button>
<button class="six number">6</button>
<button class="subtraction operator">-</button>
<button class="one number">1</button>
<button class="two number">2</button>
<button class="three number">3</button>
<button class="addition operator">+</button>
<button class="plusMinus">+/-</button>
<button class="zero number">0</button>
<button class="decimal number">.</button>
<button class="equal">=</button>
</div>
<div class="rectangle"></div>
</div>
</main>
<footer>
<p>Copyright © saimanoj22</p>
<a href="https://github.com/saimanoj22" target="_blank">
<img src="images/GitHub.svg" class="github" alt="GitHub logo">
</a>
</footer>
</body>
<script src="script.js"></script>
</html>