-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (17 loc) · 778 Bytes
/
index.html
File metadata and controls
19 lines (17 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html ng-app="todoapp" >
<head>
<title>ToDo 1.1</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style/style.css">
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/services/services.js" ></script>
<script type="text/javascript" src="js/controllers/todoctrl.js" ></script>
</head>
<body >
<div class="align-center col-md-12" ui-view></div>
</body>
</html>