-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (89 loc) · 3.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {background-color: #92a8d1;}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Road Complaint Tracker</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/half-slider.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="complaint-management-system/users/index.php">User Login</a>
</li>
<li>
<a href="complaint-management-system/users/registration.php">User Registration</a>
</li>
<li>
<a href="complaint-management-system/admin/index.php">Admin</a>
</li>
<li><a href="maps.html">Maps</a></li>
</ul>
</div>
</div>
<!-- /.container -->
</nav>
<header id="myCarousel" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<div class="fill" style="background-image:url('https://www.teahub.io/photos/full/279-2796156_high-resolution-highway-roads.jpg');"></div>
<div class="carousel-caption">
</div>
</div>
<div class="item">
<div class="fill" style="background-image:url('https://wallpaperaccess.com/full/5556038.jpg');"></div>
<div class="carousel-caption">
</div>
</div>
<div class="item">
<div class="fill" style="background-image:url('https://wallpaperaccess.com/full/1079100.jpg');"></div>
<div class="carousel-caption">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="icon-next"></span>
</a>
</header>
<!-- Content -->
<div class="row">
<div class="col-lg-12">
<div class="com"><h1><b>WELCOME TO ROAD COMPLAINT TRACKER</b></h1>
<h3>Making the journey safer</h3>
<p><h2>The Easiest Way To Complain Online </h2><br> <b><i>Tired off getting ripped off? Fight back and file a customer complaint now.Sign Up Today And You Can Leave Complaints on various topics/company.</b> </i></p></div>
</div>
</div>
<style>
.com{text-align: center;}
</style>
<hr>
<style>
.col-lg-12{text-align: center; border: 3px solid black;}
</style>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Script to Activate the Carousel -->
<script>
$('.carousel').carousel({
interval: 3000
})
</script>
</body>
</html>