forked from Mac-Taylor/Final-Project-Repository
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (24 loc) · 1 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular.js"></script>
<script src="https://npmcdn.com/[email protected]/release/angular-ui-router.min.js"></script>
<link rel="stylesheet" href="/font-awesome/css/font-awesome.min.css">
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDbZDcAbxhN635MKN1eLO6Igl1uq7rFraU"></script>
<link href="https://fonts.googleapis.com/css?family=Handlee|Open+Sans+Condensed:300|Roboto" rel="stylesheet">
<script src="https://cdn.rawgit.com/BioPhoton/angular1-star-rating/v1.2.4/dist/index.js"></script> <!-- script tag for star ratings -->
<script src="app.js"></script>
<link rel="stylesheet" href='style.css'>
<style>
#map {
width: 100%;
height: 600px;
background-color: grey;
}
</style>
</head>
<body ng-app="MealApp">
<ui-view></ui-view>
</body>
</html>