-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (32 loc) · 1.28 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
<!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">
<link href="assets/open-book.png" rel="icon">
<link href="style.css" rel="stylesheet">
<title>Grade Averages</title>
</head>
<body>
<br><br>
<div class="square">
<h1 id="title"></h1>
<script src="script.js"></script>
<label class="h3" for="eng">English Literature</label>
<input class="box" id="eng" type="number" required>
<label class="h3" for="mat">Mathematics</label>
<input class="box" id="mat" type="number" required>
<label class="h3" for="bio">Biology</label>
<input class="box" id="bio" type="number" required>
<label class="h3" for="his">History</label>
<input class="box" id="his" type="number"required>
<label class="h3" for="pe">Physical Education</label>
<input class="box" id="pe" type="number" required>
<br><br>
<input id="submit" type="button" value="Submit" onclick="click()">
<br><br>
<div class="showresult"id="showresult"></div>
</div>
</body>
</html>