-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentGrader.html
More file actions
29 lines (22 loc) · 834 Bytes
/
StudentGrader.html
File metadata and controls
29 lines (22 loc) · 834 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StudentGrader</title>
</head>
<body style="background-color: grey;margin-left: 25%; ">
<h1>Student Grader</h1>
<p1>Kindly Enter Student Marks Below</p1>
<div style= "border: darkgoldenrod;border-width: 50cm;background-color: aqua;">
<form>
<label for="mark">Enter marks: </label>
<input type="number" id="mark">
</form>
<button type="submit" id="calculateGrade" onclick='displayGrade()'>Calculate Grade</button>
<h2 id="Result">Result:</h2>
<script src="/codechallenge_1/StudentGrader.html"></script>
</div>
<footer>by Samson Chelgut</footer>
</body>
</html>