forked from Bhanu0202/CSI-Student-information-desk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
134 lines (124 loc) · 4.86 KB
/
courses.html
File metadata and controls
134 lines (124 loc) · 4.86 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000" />
<title>Registered Courses</title>
<link rel="icon" href="images/favicon.png" sizes="16x16" type="image/png">
<link rel="stylesheet" type="text/css" href="css/courses.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Serif+SC|Permanent+Marker" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="js/index.js"></script>
<script src="js/library.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<!--navbar----------------------------------------------------------------------------------------------------->
<nav class="navbar navbar-reverse fixed-top">
<a class="navbar-brand" href="https://www.lnmiit.ac.in">
<img src="images/logolnm.png" alt="lnm-logo" id="nav-img">
</a>
<div class ="dropdown ml-auto">
<button class="btn btn-lg btn-outline-light dropdown-toggle" data-toggle="dropdown" id="navbarDropdown">
Hi, User
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<li class="img1"><a class="dropdown-item" href="#"><img src="images/user.jpg"></a></li>
<li><a class="dropdown-item" href="index.html">Home</a></li>
<li><a class="dropdown-item" href="#">Logout</a></li>
<li><a class="dropdown-item" href="change-pswd.html">Change Password</a></li>
</ul>
</div>
</nav>
<div class="sidebar">
<a href="stu-details.html" class="btn">Student Details</a>
<a href="complaint.html" class="btn">Complaint Registration</a>
<a href="lt-booking.html" class="btn">LT booking Portal</a>
<a href="library.html" class="btn">Library Book Issue</a>
<a href="#" class="btn active">Registered Courses</a>
<a href="event.html" class="btn">Upcoming Events</a>
</div>
<!--MAIN------------------------------------------------------------------------------------------------------->
<div class="course">
<table class="table table-striped table-responsive">
<thead>
<th>Code</th>
<th>Course Name</th>
<th>Section</th>
<th>Type</th>
<th>Faculty</th>
<th>Credits</th>
</thead>
<tbody>
<tr>
<td>CN</td>
<td>Computer Networks</td>
<td>B2</td>
<td>CORE</td>
<td>Anupama Bansal, Pooja Kohli</td>
<td>4</td>
</tr>
<tr>
<td>DAA</td>
<td>Design Analysis and Algorithms</td>
<td>B1</td>
<td>CORE</td>
<td>Harsh Mehra, Reeta Gauttam</td>
<td>3</td>
</tr>
<tr>
<td>OS</td>
<td>Operating Systems</td>
<td>B1</td>
<td>CORE</td>
<td>Sunil Mishra, Khushboo Pandey</td>
<td>4</td>
</tr>
<tr>
<td>EFE</td>
<td>Economics For Engineers</td>
<td>B1</td>
<td>CORE</td>
<td>Viraj Gupta</td>
<td>3</td>
</tr>
<tr>
<td>P&S</td>
<td>Probability and Statistics</td>
<td>B1</td>
<td>CORE</td>
<td>Dheerendra Bakshi, Vikas Gupta, Deepak Reddy</td>
<td>4</td>
</tr>
<tr>
<td>TOC</td>
<td>Theory of Computation</td>
<td>B2</td>
<td>CORE</td>
<td>Preeti Gera, Kusum Aggarwal</td>
<td>3</td>
</tr>
<tr>
<td>ICTC</td>
<td>Introduction to Coding Theory and Cryptography</td>
<td>A1</td>
<td>P.E.</td>
<td>Jay Kumar Tripathi</td>
<td>3</td>
</tr>
</tbody>
</table>
</div>
<!-- footer ---------------------------------------------------------------------------------------------------->
<footer class="footer navbar fixed-bottom">
<span class="navbar-brand">© Copyright 2019</span>
<button id="scroll-top" onclick="toTop()" class="btn btn-outline-light"><i class="fa fa-arrow-up" aria-hidden="true"></i></button>
</footer>
</body>
</html>