-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.57 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="styles.css" type="text/css">
<title>My calculator</title>
</head>
<body>
<div class="calculator-body">
<input type="text" id="display" disabled>
<div class="buttons">
<div class="column1">
<button>sin</button>
<button>ln</button>
<button>cos</button>
<button>log</button>
<button>tan</button>
<button>inv</button>
<button>π</button>
<button>^</button>
<button>!</button>
<button>√</button>
</div>
<div class="column2">
<button>7</button>
<button>8</button>
<button>9</button>
<button>4</button>
<button>5</button>
<button>6</button>
<button>1</button>
<button>2</button>
<button>3</button>
<button>0</button>
<button>.</button>
<button>del</button>
</div>
<div class="column3">
<button>/</button>
<button>(</button>
<button>x</button>
<button>)</button>
<button>-</button>
<button>+</button>
<button>Clear</button>
<button>=</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>