-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.21 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neumorphic Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<input type="number" value="0">
<div class="keys">
<button class="op__key" op="clear">c</button>
<button class="op__key" op="negate">+/-</button>
<button class="op__key" op="percent">%</button>
<button class="op__key" op="divide">/</button>
<button class="num__key">7</button>
<button class="num__key">8</button>
<button class="num__key">9</button>
<button class="op__key" op="multiply">x</button>
<button class="num__key">4</button>
<button class="num__key">5</button>
<button class="num__key">6</button>
<button class="op__key" op="subtract">-</button>
<button class="num__key">1</button>
<button class="num__key">2</button>
<button class="num__key">3</button>
<button class="op__key" op="add">+</button>
<span></span>
<button class="num__key">0</button>
<button class="num__key">.</button>
<button class="eq__key">=</button>
</div>
</main>
<script type="text/javascript" src="index.js"></script>
</body>
</html>