forked from FELS-Rohit/NGQUIZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 902 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="quizApp" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Quiz Application</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<script src="scripts/angular.min.js"></script>
<script src="scripts/angular-ui/angular-ui-router.js"></script>
<script src="scripts/angular-route.min.js"></script>
<script src="scripts/angular-resource.min.js"></script>
<script src="scripts/angular-ui/ui-bootstrap-tpls.min.js"></script>
<script src="js/app.js"></script>
<script src="js/helperService.js"></script>
<script src="js/quizCtrl.js"></script>
<script src="js/createCtrl.js"></script>
</head>
<body ng-controller="quizCtrl">
<div class="">
<div class="main">
<div ui-view></div>
</div>
</div>
</body>
</html>