-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 908 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Grade Calculator using JavaScript</title>
<!-- Google Fontn -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="container">
<h1 class="grade-title">Grade Calculator</h1>
<div class="grade-contianer">
<input id="resultValue" placeholder="Enter your Marks">
<button id="checkBtn" class="btn" type="button">check</button>
<h3 id="display" class="result">
Your Grade is: <span id="gradeValue">---</span>
</h3>
</div>
</div>
<!-- Main JS File -->
<script src="assets/main.js"></script>
</body>
</html>