-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.65 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>AHS Sem Exam Calc</title>
</head>
<body>
<header>
<h1>Semester Exam Calculator</h1>
</header>
<main>
<div class="container">
<h2>Input grades in the box below based on the following:</h2>
<ul>
<li>1st box: 1st / 3rd Quarter grade</li>
<li>2nd box: 2nd / 4th Quarter grade</li>
<li>3rd box:
<ul>
<li>If you're calculating your semester grade with an 'X' on the final, put 'X' here, and click "3rd = Final"</li>
<li>If you're calculating the grade necessary to get an 'X' as your final semester grade, put 'X' here and click "3rd = Sem"</li>
</ul>
</li>
</ul>
<input type="number" id="box1" placeholder="1st / 3rd Quarter">
<input type="number" id="box2" placeholder="2nd / 4th Quarter">
<input type="number" id="box3" placeholder="3rd Block">
<br>
<input type="submit" value="3rd=Final" onclick="final()">
<input type="submit" value="3rd=Sem" onclick="sem()">
<br><br>
<h4>Results</h4>
<p id="result">e</p>
</div>
</main>
<body><script src="index.js"></script></body>
<footer>
<p class="footnote"> Made by Warith Rahman via GitHub. Design inspired by <a href="https://www.ekzhang.com" target="_blank" style="color: lightgrey">Eric Zhang</a></p>
</footer>
</body>
</html>