-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (28 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel = "stylesheet" href = "styles.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<script src="https://kit.fontawesome.com/88898626a2.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<link rel="icon" href="favicon.png">
<title>Exam Grade Calculator</title>
<body>
<!-- <div class = "site-header"> CheckList <i class="fa-solid fa-check fa-lg"></i> </div> -->
<div class="container">
<div class="container-name">Exam Grade Calculator</div>
<div class="result">
<div class="result-grade"><span id = "result-grade-value">100</span>% </div>
<div class = "result-subheader">With a grade of <span id ="result-current-grade-value">95</span>%, you'll need to score a <span id = "result-grade-value2">100</span>% on your exam
to get a <span id ="result-target-grade-value">93</span>% in the class.</div>
</div>
<div class = "grade-input-h">Current Grade<input type = "text" class = "grade-input"></input> %</div>
<div class = "target-input-h">Target Grade<input type = "text" class = "target-input"></input> %</div>
<div class = "weight-input-h">Exam Weight<input type = "text" class = "weight-input"></input> %</div>
<button type="button" class = "submit-button">Calculate</button>
</div>
</body>
</html>