-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculator App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="calculator">
<div class="output">
<div id="result" class="result">0</div>
</div>
<button id="clear-button" class="colom-two">C</button
><button id="delete-button">←</button
><button id="divide-button">/</button><button class="number">7</button
><button class="number">8</button><button class="number">9</button
><button id="multiply-button">*</button><button class="number">4</button
><button class="number">5</button><button class="number">6</button
><button id="subtract-button">-</button><button class="number">1</button
><button class="number">2</button><button class="number">3</button
><button id="add-button">+</button><button id="decimal-button">.</button
><button class="number">0</button
><button id="equal-button" class="colom-two">=</button>
</div>
</body>
<script src="script.js"></script>
</html>