-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 2.12 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>
<link type="text/css" href="resources/style/style.css" rel="stylesheet">
<title>Magic Keyboard Calculator</title>
</head>
<body>
<div class="segment-top">
<h1 id="title" class="title">Magic Keyboard Calculator</h1>
</div>
<div class="segment-middle">
<div class="calc-box">
<div class="calc-screen">
<div class="screen top"></div>
<div class="screen bottom"></div>
</div>
<div class="buttons-area">
<button id="Clear" value="clear"type="button" class="button btn-1">clear</button>
<button id="=" value="=" type="button" class="button btn-2">=</button>
<button id="/" value="/" type="button" class="button btn-3">/</button>
<button id="*" value="*" type="button" class="button btn-4">*</button>
<button id="7" value="7" type="button" class="button btn-5">7</button>
<button id="8" value="8" type="button" class="button btn-6">8</button>
<button id="9" value="9" type="button" class="button btn-7">9</button>
<button id="-" value="-" type="button" class="button btn-8">-</button>
<button id="4" value="4" type="button" class="button btn-9">4</button>
<button id="5" value="5" type="button" class="button btn-10">5</button>
<button id="6" value="6" type="button" class="button btn-11">6</button>
<button id="+" value="+" type="button" class="button btn-12">+</button>
<button id="1" value="1" type="button" class="button btn-13">1</button>
<button id="2" value="2" type="button" class="button btn-14">2</button>
<button id="3" value="3" type="button" class="button btn-15">3</button>
<button id="Enter" value="enter" type="button" class="button btn-16">enter</button>
<button id="0" value="0" type="button" class="button btn-17">0</button>
<button id="." value="." type="button" class="button btn-18">.</button>
</div>
</div>
</div>
<script src="resources/script/script.js"></script>
</body>
</html>