-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 965 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 965 Bytes
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
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<title>Angular & PHP Tutorial - Theonlytutorials.com</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--angular js cdn-->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://code.angularjs.org/1.6.4/angular-route.min.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!--our code-->
<script src="js/app.js"></script>
<script src="js/controller.js"></script>
</head>
<body>
<div class="container">
<h2 style="font-style: italic; color: darkblue;">Angular & PHP - Theonlytutorials.com</h2>
<hr></hr>
<div class="main" ng-view></div>
</div>
<br />
</body>
</html>