-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (34 loc) · 1.4 KB
/
index.php
File metadata and controls
34 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<!--Sayan Pandey 15/IT/21-->
<html lang='en'>
<head>
<title>NIT Durgapur Portal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="jquery3.3.1.js"></script>
</head>
<body>
<div class="banner">
<img id="logo" src="img/logo.png">
<h1 class="bannertext">National Institute of Technology DURGAPUR, West Bengal</h1>
</div>
<div class="wrap"><div id="message">Welcome !! Click the link below to visit a portal.</div></div>
<br>
<div id="select">
<div id="student">
<div class="click">
<a target="_blank" href="students.php"><h1 class="panel" style='float:left;display:inline-block;'>Students' Portal</h1></a>
<img id="std_img" src="img/student.png" style="float:right">
</div>
</div>
<div id="admin">
<div class="click">
<img id ="admin_img" src="img/administrator.png" style="float:left">
<a target="_blank" href="admins.php"><h1 class="panel" style='float:right;display:inline-block;'>Administrators' Portal</h1></a>
</div>
</div>
</div>
</body>
<script src="main.js"></script>
</html>