-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
61 lines (51 loc) · 2.48 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
<!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="external/css/columns/col.css">
<link rel="stylesheet" type="text/css" href="external/css/columns/3cols.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 id="pages" class="main-nav">
<li><a href="#"><b>Search</b></a></li> <!--link to index.html-->
<li><a href="#">Report</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>Home</h1>
<section class="content">
<div class="section group">
<div class="col span_1_of_3">
<div class="ctr-index">
<a href="#"><i class="ion-ios-search icon-large"></i></a> <!--link to search.html-->
<h2>Search</h2>
</div>
</div>
<div class="col span_1_of_3">
<div class="ctr-index">
<a href="#"><i class="ion-ios-pie-outline icon-large"></i></a> <!--link to report.html-->
<h2>Report Generation</h2>
</div>
</div>
<div class="col span_1_of_3">
<div class="ctr-index">
<a href="#"><i class="ion-ios-information-outline icon-large"></i></a> <!--link to help.html-->
<h2>Help</h2>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>