-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.htm
37 lines (34 loc) · 895 Bytes
/
index.htm
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
<html>
<style>
a:link {
color: green;
}
a:visited {
color: hotpink;
}
a:hover {
color: red;
}
a:active {
color: blue;
}
</style>
<head>
<title>RAILWAY RESERVATION SYSTEM</title>
</head>
<body style=" background-image: url(train.gif);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;" >
<div align="CENTER" >
<h1 style="color: red;">RAILWAY RESERVATION SYSTEM</h1>
<div>
<h2 style="font-style: italic;"><br><a href="http://localhost/railway/new_user_form.html">New User </a><br>
<br><a href="http://localhost/railway/enquiry.php" >Enquiry and Ticket Booking </a><br>
<br><a href="http://localhost/railway/user_login.htm">Ticket History OR Cancellation </a><br>
<br><a href="http://localhost/railway/admin_login.php">Admin Login </a><br></h2>
</div>
</div>
</body>
</html>