-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (109 loc) · 3.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="calc">
<div id="display">
<p id="text"></p>
<p id="operation">Operation: <span id="span"></span></p>
</div>
<div id="clear">
<button type="button">CLR</button>
</div>
<div id="log">
<button type="button">log</button>
</div>
<div id="rem">
<button type="button">%</button>
</div>
<div id="division">
<button type="button">/</button>
</div>
<div id="_7" class="numbers">
<button type="button">7</button>
</div>
<div id="_8" class="numbers">
<button type="button">8</button>
</div>
<div id="_9" class="numbers">
<button type="button">9</button>
</div>
<div id="multi">
<button type="button">×</button>
</div>
<div id="_4" class="numbers">
<button type="button">4</button>
</div>
<div id="_5" class="numbers">
<button type="button">5</button>
</div>
<div id="_6" class="numbers">
<button type="button">6</button>
</div>
<div id="subt">
<button type="button">-</button>
</div>
<div id="_1" class="numbers">
<button type="button">1</button>
</div>
<div id="_2" class="numbers">
<button type="button">2</button>
</div>
<div id="_3" class="numbers">
<button type="button">3</button>
</div>
<div id="add">
<button type="button">+</button>
</div>
<div id="del">
<button type="button" id="dele">DEL</button>
</div>
<div id="_0" class="numbers">
<button type="button">0</button>
</div>
<div id="decimal">
<button type="button">.</button>
</div>
<div id="equal">
<button type="button">=</button>
</div>
<div id="sin">
<button type="button">Sin</button>
</div>
<div id="cos">
<button type="button">Cos</button>
</div>
<div id="tan">
<button type="button">Tan</button>
</div>
<div id="sqrt">
<button type="button">Sqrt</button>
</div>
<div id="pow">
<button type="button">Pow</button>
</div>
<div>
<button type="button" id="angle" title="click to switch the angle unit to the unit written on the button">Deg</button>
</div>
<div id="pi">
<button type="button">π</button>
</div>
<div id="expo">
<button type="button">e</button>
</div>
</div>
<nav>
<li><button id="mode">NightMode</button></li>
<li><a href="">about us</a></li>
<li><a href="">contact</a></li>
<li><a href="">help</a></li>
</nav>
<script src="script.js"></script>
</body>
</html>