forked from danielkirwa/my-Train-Ticket-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.78 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta name="viewport" content="width=divice-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/navbar.css">
<link rel="stylesheet" type="text/css" href="styles/homepage.css">
</head>
<style type="text/css">
.background-image{
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(assets/terminal1.jpg);
}
</style>
<body>
<!-- start of navigation bar -->
<div class="overlay">
<center><label style="font-size: 24px ">Travell in Style</label></center>
</div>
<input type="checkbox" name="" id="check">
<label for="check" id="checkmenubar">
<i><img src="assets/closeicon.png" id="btnclose" width="30px"></i>
<i><img src="assets/menuicon.png" id="btnmenu" width="30px"></i>
</label>
<div class="navbarholder">
<header>
<nav>
<center>
<a href="#" class="active">Home</a>
<a href="#"><img src="assets/ticketscart.png" width="24px">Bookings<span></span></a>
<a href="#">Departures</a>
<a href="#">About</a>
<a href="#">Login</a>
</center>
</nav>
</header>
</div>
<!-- end of navigation bar -->
<section>
<div class="background-image">
<div class="main-context">
<h2>Facilitate online Train bookings</h2>
True Train is an online Train ticket booking and reservation software, built on the powerful open source language PHP and MySQL with Codeigniter framework that allows you to manage your bus inventory, fares, routes, schedules as well as your entire back office. It is a powerful software designed with the main intention of generating a dynamic and automated system for all bus booking and reservation operations. The True Bus will promote your fleet management to new and existing customers through a range of options.
</div>
</div>
</section>
</body>
</html>