-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
70 lines (68 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="html2pdf.bundle.js"></script>
</head>
<body>
<div class = "heading">
<h1 class = "headline">Simple Calculator</h1>
<marquee class="marquee">Feel free to use this calculator</marquee>
</div>
<div class="calculator">
<div id="display">0</div>
<div class="buttons">
<button id="clear">C</button>
<button id="add">+</button>
<button id="subtract">-</button>
<button id="multiply">*</button>
<button id="divide">/</button>
<button id="store">Store</button>
<button id="equals">=</button>
</div>
<div class="numpad">
<button>1</button>
<button>2</button>
<button>3</button>
<button>4</button>
<button>5</button>
<button>6</button>
<button>7</button>
<button>8</button>
<button>9</button>
<button>0</button>` `
</div>
</div>
<div class = "types">
<div class="search-container">
<input type="text" id="searchInput" onkeyup="searchFunction()" placeholder="Search for names..">
</div>
<h1 class="typesheading">More Calculator's</h1>
<br><br>
<a href = "html/bmi.html" class="hreftag">BMI Calculator</a>
<br><br>
<a href = "html/sgpa.html" class="hreftag">SGPA Calculator</a>
<br><br>
<a href="html/distance.html" class="hreftag">Distance Calculator</a>
<br><br>
<a href="html/meanmedianmode.html" class="hreftag">Mean,Median,Mode</a>
<br><br>
<a href="html/AgeCalculator.html" class="hreftag">Age Calculator</a>
<br><br>
<a href="html/sci.html" class="hreftag">Scientific Calculator</a>
<br><br>
<a href="html/tempcal.html" class="hreftag">Temperature Calculator</a>
<br><br>
<a href="html/matrix.html" class="hreftag">Matrix Calculator</a>
<br><br>
<a href="html/CurrencyConverter.html" class="hreftag">Currency Converter</a>
<br><br>
<a href="html/CO2.html" class="hreftag">CO2 Emissions Calculator</a>
<footer>
<br>
<p class="pagebottom">Made by <a href="https://github.com/coderiksenthil/calculator" class="linkfotor" target="_blank">Gitub Community
</a></p>
</footer>
<script src="../calculator/script.js"></script>
</body>
</html>