-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.html
62 lines (55 loc) · 1.88 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
58
59
60
61
62
<!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 rel="stylesheet" href="students.css">
<title>Student</title>
</head>
<body>
<h1 class="caption-heading">Student Mark Report</h1>
<table align="center" cellspacing="0" class="box">
<tr align="center">
<td colspan="2" class=" Student_Information"><label for="">Student Information</label></td>
</tr>
<tr>
<td><label for="">RollNo</label></td>
<td><input type="text" name="" id="rno"></td>
</tr>
<tr>
<td><label for="">Name</label></td>
<td><input type="text" name="" id="sna"></td>
</tr>
<tr align="center">
<td colspan="2" class=" Marks"><label for="">Marks</label></td>
</tr>
<tr>
<td><label for="">HTML</label></td>
<td><input type="text" name="" id="hm"></td>
</tr>
<tr>
<td><label for="">CSS</label></td>
<td><input type="text" name="" id="cm"></td>
</tr>
<tr>
<td><label for="">js</label></td>
<td><input type="text" name="" id="jm"></td>
</tr>
<tr align="center">
<td colspan="2"><button onclick="getResult()" class="Get_Result"> Get Result</button></td>
<!-- <td colspan="2"><button></button></td> -->
</tr>
<tr align="center">
<td colspan="2"><output id="total"></output></td>
</tr>
<tr align="center">
<td colspan="2"><output id="average"></output></td>
</tr>
<tr align="center">
<td colspan="2"><output id="grade"></output></td>
</tr>
</table>
<script src="student.js"></script>
</body>
</html>