-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<title>Student Management System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Student Management System</h1>
<form id="resultForm">
<label for="name">Student Name:</label>
<input type="text" id="name" name="name" required />
<label for="roll">Reg Number:</label>
<input type="text" id="roll" name="roll" required />
<label for="PPS">PPS Marks:</label>
<input type="number" id="PPS" name="PPS" min="0" max="100" required />
<label for="BASICELECTRONICS">BEE Marks:</label>
<input type="number" id="BEE" name="BEE" min="0" max="100" required />
<label for="CPROGRAMMING">BME Marks:</label>
<input type="number" id="BME" name="BME" min="0" max="100" required />
<button type="submit">Add Result</button>
<button type="button" onclick="resetForm()">Reset</button>
</form>
<div class="table-container">
<table id="resultTable">
<thead>
<tr>
<th>Name</th>
<th>Roll No</th>
<th>PPS MARKS</th>
<th>BEE MARKS</th>
<th>BME Marks</th>
<th>Total</th>
<th>Percentage</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>