-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 951 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
<!doctype html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<title>ToDo Project</title>
<meta name="description" content="A project to track tasks to do">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-2">
<h1 ng-bind="message"></h1>
</div><!-- col-md -->
</div><!-- row -->
</div><!-- container -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/angularjs/angular.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>