-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
40 lines (35 loc) · 796 Bytes
/
courses.html
File metadata and controls
40 lines (35 loc) · 796 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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Courses</title>
<style>
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
td input {
width: 100%;
padding: 5px;
}
</style>
</head>
<body>
<h1>Calculate Avergare Grade</h1>
<hr />
<div>
<table>
<tbody id="courseTable"></tbody>
</table>
<button type="button" onclick="getInputValues()">Get Values</button>
</div>
<script src="./js/courses.js"></script>
</body>
</html>