-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 2.18 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
<!DOCTYPE html>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<script src="./app.js" defer></script>
<title>calculator</title>
<body>
<div class="header"><header>the number doer 3000</header></div>
<div class="app-container">
<div class="display-container">
<output id="display"></output>
</div>
<div class="decor">. . .</div>
<div class="btn-container">
<div class="row">
<button class="number-btn" id="btn7" value="7" type="button">7</button>
<button class="number-btn" id="btn8" value="8" type="button">8</button>
<button class="number-btn" id="btn9" value="9" type="button">9</button>
<button class="app-btn" id="clear" value="" type="button">AC</button>
</div>
<div class="row">
<button class="number-btn" id="btn4" value="4" type="button">4</button>
<button class="number-btn" id="btn5" value="5" type="button">5</button>
<button class="number-btn" id="btn6" value="6" type="button">6</button>
<button class="operator-btn" id="add" value="+" type="button">+</button>
</div>
<div class="row">
<button class="number-btn" id="btn1" value="1" type="button">1</button>
<button class="number-btn" id="btn2" value="2" type="button">2</button>
<button class="number-btn" id="btn3" value="3" type="button">3</button>
<button class="operator-btn" id="subtract" value="-" type="button">-</button>
</div>
<div class="row">
<button class="number-btn" id="btn0" value="0" type="button">0</button>
<button class="operator-btn" id="divide" value="/" type="button">/</button>
<button class="operator-btn" id="multiply" value="*" type="button">x</button>
<button class="operator-btn" id="equal" value="=" type="button">=</button>
</div>
</div>
</div>
<div class="footer">
<footer>a tem production</footer>
</div>
</body>