-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> Simple Calculator </title>
<link rel="stylesheet" href="./indexstyle.css">
<script src="./script.js"></script>
<link rel="icon" type="image/x-icon" href="./475497.png">
</head>
<body>
<div class="main-head">
<p>
Simple Calculator developed by using HTML,CSS,JS only.
</p>
</div>
<div class="main-calci">
<div class="main-calculator">
<input class = "display-box" type = "text" id = "result" disabled />
<input class = "button" type = "button" value = "C" onclick = "clearScreen()" id="clear"/>
<br>
<input class = "button" type = "button" value = "1" onclick = "display('1')" />
<input class = "button" type = "button" value = "2" onclick = "display('2')" />
<input class = "button" type = "button" value = "3" onclick = "display('3')" />
<input class = "button" type = "button" value = "/" onclick = "display('/')" />
<br>
<input class = "button" type = "button" value = "4" onclick = "display('4')" />
<input class = "button" type = "button" value = "5" onclick = "display('5')" />
<input class = "button" type = "button" value = "6" onclick = "display('6')" />
<input class = "button" type = "button" value = "+" onclick = "display('+')" />
<br>
<input class = "button" type = "button" value = "7" onclick = "display('7')" />
<input class = "button" type = "button" value = "8" onclick = "display('8')" />
<input class = "button" type = "button" value = "9" onclick = "display('9')" />
<input class = "button" type = "button" value = "-" onclick = "display('-')" />
<br>
<input class = "button" type = "button" value = "." onclick = "display('.')" />
<input class = "button" type = "button" value = "0" onclick = "display('0')" />
<input class = "button" type = "button" value = "=" onclick = "calculate() " />
<input class = "button" type = "button" value = "*" onclick = "display('*')" />
</div>
</div>
<div class="credits">
Developed by <a href="https://pruthvirajp04.github.io/" target="_blank">Pruthviraj Patil</a>
</div>
</body>
</html>