-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link href='css/styles.css' rel='stylesheet'>
<script src='script.js' async></script>
</head>
<body>
<main class='calculator-body'>
<section class='calculator-display-outer'>
<section class='calculator-display-inner'>
0
</section>
</section>
<button type='button' class='number' id='zero'>0</button>
<button type='button' class='number' id='one'>1</button>
<button type='button' class='number' id='two'>2</button>
<button type='button' class='number' id='three'>3</button>
<button type='button' class='number' id='four'>4</button>
<button type='button' class='number' id='five'>5</button>
<button type='button' class='number' id='six'>6</button>
<button type='button' class='number' id='seven'>7</button>
<button type='button' class='number' id='eight'>8</button>
<button type='button' class='number' id='nine'>9</button>
<button type='button' class='operator' id='plus'>+</button>
<button type='button' class='operator' id='minus'>-</button>
<button type='button' class='operator' id='times'>*</button>
<button type='button' class='operator' id='obelus'>÷</button>
<button type='button' class='decimal'>.</button>
<button type='button' class='plusminus'>+/- (_)</button>
<button type='button' class='equal'>=</button>
<button type='button' class='clear'>clear (c)</button>
<button type='button' class='back'>back</button>
</main>
</body>
</html>