-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathindex.html
85 lines (75 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="sty.css">
<title>Calculator</title>
</head>
<body>
<!-- Grade Calculator -->
<div class="container">
<h1 class="grade"> Grade Calculator</h1>
<div class="calc-body">
<div class="result">
<h1>Result</h1>
<div class="show">
<h2>Total:<span id="total"></span></h2>
<br>
<h2>Percentage:<span id="percentage"></span></h2>
<br>
<h2>Grade:<span id="grade"></span></h2>
</div>
</div>
<div class="inp">
<div class="main">
<input type="number" name="" id="DELD" placeholder="DELD"><br>
<input type="number" name="" id="OS" placeholder="OS"><br>
<input type="number" name="" id="DBMS" placeholder="DBMS"><br>
<input type="number" name="" id="AWT" placeholder="AWT"><br>
<input type="number" name="" id="EG" placeholder="EG"><br>
<button class="btn" onclick="getResult()">Calculate Result</button>
</div>
</div>
</div>
</div>
<!-- Simple Calculator -->
<div class="container">
<h1 class="simp">Normal Calculator</h1>
<div class="calculator">
<input type="text" name="screen" id="screen">
<table>
<tr>
<td><button>(</button></td>
<td><button>)</button></td>
<td><button>C</button></td>
<td><button>%</button></td>
</tr>
<tr>
<td><button>7</button></td>
<td><button>8</button></td>
<td><button>9</button></td>
<td><button>X</button></td>
</tr>
<tr>
<td><button>4</button></td>
<td><button>5</button></td>
<td><button>6</button></td>
<td><button>-</button></td>
</tr>
<tr>
<td><button>1</button></td>
<td><button>2</button></td>
<td><button>3</button></td>
<td><button>+</button></td>
</tr>
<tr>
<td><button>0</button></td>
<td><button>.</button></td>
<td><button>/</button></td>
<td><button>=</button></td>
</tr>
</table>
</div>
</div>
</body>
<script src="home.js"></script>
</html>