-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<title></title>
<title>AngularJS Routing example</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script src="app.js"></script>
<script src='//maps.googleapis.com/maps/api/js?sensor=false'></script>
<script src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/src/infobox.js"></script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body ng-app="project">
<h2>Get Rx </h2>
<div class="container">
<div class="col-md-3">
<ul class="nav">
<li><a href="#"> Welcome </a>
</li>
<li><a href="#flow"> How it works </a>
</li>
<li><a href="#map"> Pharmacy Near You </a>
</li>
<li><a href="#meds"> Search Meds and Add</a>
</li>
<li><a href="#deliver"> Add Address, Payment & confirm </a>
</li>
</ul>
</div>
<div class="col-md-9">
<div ng-view></div>
</div>
</div>
</body>
</html>