-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathindex.html
33 lines (26 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html lang="en" ng-app="fourWheels">
<head>
<title>Four Wheels</title>
<!-- META INFO -->
<meta charset="UTF-8">
<meta name="description" content="Four Wheels Car Store">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--RESET FILE -->
<link rel="stylesheet" href="reset.css">
<!--MAIN FILE-->
<link rel="stylesheet" href="styles.css">
<!-- Component Styles -->
<link rel="stylesheet" href="app/header/header.css" />
<link rel="stylesheet" href="app/cars/cars.css" />
<link rel="stylesheet" href="app/footer/footer.css" />
</head>
<body>
<!-- Including angular then our javascript files. ORDER MATTERS -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.js"></script>
<!-- Our Custom Script Files -->
<script src="app/app.js"></script>
<script src="app/services/cars.service.js"></script>
<!-- Component Files -->
</body>
</html>