-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
45 lines (44 loc) · 2.39 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://cdn-icons-png.flaticon.com/512/6469/6469034.png" type="image/x-icon">
<title>Bus Ticket Booking</title>
</head>
<body>
<h1 class="title"><img src="https://cdn-icons.flaticon.com/png/512/3066/premium/3066259.png?token=exp=1643485325~hmac=761a3a37424b1bb74ee71f64a4e63f98">BUS TICKET BOOKING</h1>
<div class="container" id="ctn_1">
<div class="card"><a href="display.php">
<img src="https://cdn-icons.flaticon.com/png/512/5594/premium/5594047.png?token=exp=1642089392~hmac=dfded3dc85ecab7b7b954157e6d1619a" alt="bus image">
<h1>BUS</h1>
<p>Manage all the bus details</p></a>
</div>
<div class="card"><a href="emp_display.php">
<img src="https://cdn-icons-png.flaticon.com/512/6427/6427299.png" alt="employee image" >
<h1>EMPLOYEE</h1>
<p>Manage all the employee details</p></a>
</div>
<div class="card"><a href="routes_display.php">
<img src="https://cdn-icons.flaticon.com/png/512/5720/premium/5720302.png?token=exp=1642089213~hmac=741490cccadf10c394cb2465032e7fa3" alt="route image" >
<h1>ROUTES</h1>
<p>Manage all the route details</p></a>
</div>
<div class="card"><a href="cust_display.php">
<img src="https://cdn-icons.flaticon.com/png/512/4501/premium/4501230.png?token=exp=1642089633~hmac=4e2bf792965bfdec61bc7d3324b45e56" alt="customer image">
<h1>CUSTOMER</h1>
<p>Manage all the customer details</p></a>
</div>
<div class="card"><a href="ticket_display.php">
<img src="https://cdn-icons.flaticon.com/png/512/6030/premium/6030249.png?token=exp=1643427392~hmac=2d17e39d4de46f35e430e70a06c8a67d" alt="Ticket image">
<h1>TICKET</h1>
<p>Manage all the ticket details</p></a>
</div>
</div>
</body>
</html>