-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1002 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 1002 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
<!doctype html>
<html ng-app="hearts">
<head>
<title>Angular Hearts Demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.0/angular-route.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.0/angular-animate.min.js"></script>
<style type="text/css">ul {list-style: none}</style>
<style type="text/css">li {display: inline}</style>
<style type="text/css">a {text-decoration: none}</style>
</head>
<body>
<div ng-view>
</div>
<ul>
<li><a href="/hearts/#/spades"> ♠ </a> | </li>
<li><a href="/hearts/#/clubs"> ♣ </a> | </li>
<li><a href="/hearts/#/diamonds"> ⋄ </a> | </li>
<li><a href="/hearts/#/hearts"> ♥ </a> | </li>
<li><a href="/hearts/#/"> index </a></li>
</ul>
<script src="app.js"></script>
</body>
</html>