-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdept.html
More file actions
37 lines (31 loc) · 822 Bytes
/
dept.html
File metadata and controls
37 lines (31 loc) · 822 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
<!DOCTYPE html>
<html>
<head>
<title>Computer Science Department</title>
</head>
<body>
<h1>Department of Computer Science</h1>
<h2>Vision</h2>
<p>To be a center of excellence in computer science education and research.</p>
<h2>Mission</h2>
<p>To provide quality education and develop skilled professionals.</p>
<h2>Faculty Details</h2>
<table border="1">
<tr>
<th>Faculty Name</th>
<th>Designation</th>
<th>Email ID</th>
</tr>
<tr>
<td>Dr.Ashwini kumar</td>
<td>Professor</td>
<td>Ashwinikumar@geu.ac.in</td>
</tr>
<tr>
<td>Dr.Jyoti Agarwal</td>
<td>Professor</td>
<td>Agarwal@geu.ac.in</td>
</tr>
</table>
</body>
</html>