forked from liucec/covcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
39 lines (32 loc) · 1.34 KB
/
search.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
<?php
include "db.php";
include "functions.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="external/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400" rel="stylesheet">
<title>Traffic Vision</title>
</head>
<body>
<header>
<nav>
<div class="row">
<a href="#"> <!--link to index.html-->
<img src="resources/img/logo.png" alt="Traffic Vision Logo" class="nav-logo">
</a>
<ul class="main-nav">
<li><a href="#">Home</a></li> <!--link to index.html-->
<li><a href="#">Search</a></li> <!--link to search.html-->
<li><a href="#">Report Generation</a></li> <!--link to report.html-->
<li><a href="#">Help</a></li> <!--link to help.html-->
<li><a href="#"><i class="ion-power"></i></a></li> <!--link to login.html-->
</ul>
</div>
</nav>
</header>
<h1>Search</h1>
</body>
</html>