forked from purushottam54/studentMangementSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fifthsemester.html
110 lines (106 loc) · 3.76 KB
/
fifthsemester.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fifth Semester</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
/* Custom CSS to center-align table content */
.table td,
.table th {
text-align: center;
}
</style>
</head>
<body>
<div class="container mt-5">
<h2 class="text-center mb-4">MSBTE Marks - Second Semester (Computer Engineering)</h2>
<div class="table-responsive">
<table class="table table-striped table-bordered">
<thead class="thead-dark text-center">
<tr>
<th>Subject</th>
<th>Test+Microproject</th>
<th>End Exam</th>
<th>Practical</th>
<th>Oral</th>
<!-- <th>SLA</th> -->
<th>Total Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td>Environmental Studies</td>
<td>30</td>
<td>70</td>
<td>-</td>
<td>-</td>
<td>100</td>
</tr>
<tr>
<td>Operating System</td>
<td>30</td>
<td>70</td>
<td>25</td>
<td>25</td>
<td>150</td>
</tr>
<tr>
<td>Advance Java Programming</td>
<td>30</td>
<td>70</td>
<td>25</td>
<td>25</td>
<td>150</td>
</tr>
<tr>
<td>Software Testing</td>
<td>30</td>
<td>70</td>
<td>25</td>
<td>25</td>
<td>150</td>
</tr>
<tr>
<td>Client side scripting Language</td>
<td>30</td>
<td>70</td>
<td>25</td>
<td>25</td>
<td>150</td>
</tr>
<tr>
<td>Industrial Training</td>
<td>-</td>
<td>-</td>
<td>75</td>
<td>75</td>
<td>150</td>
</tr>
<tr>
<td>Capstone Project Planning</td>
<td>-</td>
<td>-</td>
<td>25</td>
<td>25</td>
<td>50</td>
</tr>
<tr>
<td>Total</td>
<td>150</td>
<td>350</td>
<td>200</td>
<td>200</td>
<td>900</td>
</tr>
<!-- Add more table rows here -->
</tbody>
</table>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>