-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<div id="calculator">
<p id="display">0</p>
<button id="CE" type="button">CE</button>
<button id="1" type="button">1</button>
<button id="2" type="button">2</button>
<button id="3" type="button">3</button>
<button id="/" class="operator" type="button">/</button>
<button id="C" type="button">C</button>
<button id="4" type="button">4</button>
<button id="5" type="button">5</button>
<button id="6" type="button">6</button>
<button id="*" class ="operator" type="button">*</button>
<button id="7" type="button">7</button>
<button id="8" type="button">8</button>
<button id="9" type="button">9</button>
<button id="-" class="operator" type="button">-</button>
<button id="%" class="operator" type="button">%</button>
<button id="eq" type="button">=</button>
<button id="0" type="button">0</button>
<button id="." type="button">.</button>
<button id="+" class="operator" type="button">+</button>
</div>
</body>
<script src="index.js"></script>
</html>