-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="static/style.css">
<title>Calculator</title>
</head>
<body>
<div class="main-container">
<h1 class="result">0</h1>
<div class="buttons">
<button class="button AC" id="white">AC</button>
<button class="button PM" id="white">+/-</button>
<button class="button Delete" id="white">←</button>
<button class="button /" id="orange">/</button>
<button class="button 7">7</button>
<button class="button 8">8</button>
<button class="button 9">9</button>
<button class="button X" id="orange">X</button>
<button class="button 4">4</button>
<button class="button 5">5</button>
<button class="button 6">6</button>
<button class="button -" id="orange">-</button>
<button class="button 1">1</button>
<button class="button 2">2</button>
<button class="button 3">3</button>
<button class="button +" id="orange">+</button>
<button class="button 0" style="width: 215%; border-radius: 50px;">0</button>
<button class="space"></button>
<button class="button Dot">.</button>
<button class="button =" id="orange">=</button>
</div>
</div>
<script src="static/main.js"></script>
</body>
</html>