-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calculator</title>
<!--stylesheets-->
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="main">
<section class="input">0</section>
<section class="buttons">
<div class="row">
<button class="two-forth non-oper reset">C</button>
<button class="one-forth non-oper delete">←</button>
<button class="one-forth oper">÷</button>
</div>
<div class="row">
<button class="one-forth non-oper num">7</button>
<button class="one-forth non-oper num">8</button>
<button class="one-forth non-oper num">9</button>
<button class="one-forth oper">×</button>
</div>
<div class="row">
<button class="one-forth non-oper num">4</button>
<button class="one-forth non-oper num">5</button>
<button class="one-forth non-oper num">6</button>
<button class="one-forth oper">-</button>
</div>
<div class="row">
<button class="one-forth non-oper num">1</button>
<button class="one-forth non-oper num">2</button>
<button class="one-forth non-oper num">3</button>
<button class="one-forth oper">+</button>
</div>
<div class="row">
<button class="three-forth non-oper num">0</button>
<button class="one-forth oper">=</button>
</div>
</section>
</div>
<!--Scripts-->
<script type="text/javascript" src="./scripts.js"></script>
</body>
</html>