-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
35 lines (32 loc) · 1.09 KB
/
home.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NCT | Home</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<center class="center-home-page-welcome">
<h3 class="home-page-welcome">WELCOME TO THE HOME PAGE</h3>
</center>
<marquee class="home-page-marquee">WELCOME TO NCT STUDENT PORTAL</marquee>
</head>
<body class="home-body">
<center>
<br><br><br><br><br><br>
<div class="nct-home">
<ul class="nct-role">
<li><a href="student.php" class="student-role">Student</a></li><br><br><br>
<li><a href="faculty.php" class="faculty-role">Faculty</a></li>
</ul>
</div>
</center>
</body>
<br><br><br>
<center>
<?php
include('include/footer.html')
?>
</center>
</html>