-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (17 loc) · 695 Bytes
/
Copy pathindex.html
File metadata and controls
18 lines (17 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<title>Angular Ui Router Example</title>
<meta name="Mahantesh kumbar" content="angular router">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.js"></script>
</head>
<body ng-app="myApp">
<h1 style="color:blue;">Simple Angular StateProvide Example</h1>
<ul style="list-style-type: none;">
<li><a ui-sref="primary">Primary</a></li>
<li><a ui-sref="secondary">Secondary</a></li>
</ul>
<div style="padding-left: 40%;" ui-view></div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>