-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.33 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
<!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="style.css">
<link rel="icon" type="image/png" href="https://i.pinimg.com/736x/f2/93/c0/f293c04ccaec8a333e73fab829d7c542.jpg">
<title>Calculator</title>
</head>
<body>
<!-- <p id="name"></p> -->
<div class="calculator">
<div id="digits">0</div><hr>
<div id="buttons">
<button class="btns">1</button>
<button class="btns">2</button>
<button class="btns">3</button>
<button class="operate">+</button>
<br/>
<button class="btns">4</button>
<button class="btns">5</button>
<button class="btns">6</button>
<button class="operate">-</button>
<br/>
<button class="btns">7</button>
<button class="btns">8</button>
<button class="btns">9</button>
<button class="operate">*</button>
<br/>
<button class="btns">0</button>
<button id ="ac" class="btns">AC</button>
<button class="operate">=</button>
<button class="operate">/</button>
</div>
</div>
<script src="script.js">
</script>
</body>
</html>