forked from Kashyap110/Railway-consession
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VJTI Student Railway Concession</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<div class="wrapper">
<div class="logo">
<img src="images/VJTI Logo (Enhanced).png" height="100px" alt="" >
</div>
<ul class="nav-area">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.php">Sign In</a></li>
<li><a href="https://vjti.ac.in/"; target="_blank">VJTI Site</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div class="welcome-text">
<h1 style="font-size: 45px;">
Student <span><br>Railway Concession</span><br> Portal</h1>
<a href="register.php"><b>Sign Up</b></a>
</div>
</header>
<footer style="background-color: black; height: 35px; padding-bottom: 30px;">
<p style="color: aliceblue; text-align: center;">Copyright © 2022 VJTI Student Railway Concession, All Rights Reserved.</p>
</footer>
</body>
</html>