-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (43 loc) · 2.08 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html ng-app="GRExercise">
<head>
<!-------------------------------- META -------------------------------->
<meta charset="utf-8"/>
<meta name="keywords" content="gre, ets, free, practice, exam, test, exercise, awa, calculator"/>
<meta name="description" content="Free GRE Practice Environment"/>
<meta name="author" content="Minhas Kamal & Mahedi Kamal"/>
<title>GRExercise</title>
<link rel="icon" type="image/ico" href="res/images/GRExercise.png">
<!-------------------------------- LINK -------------------------------->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="app/site.css" rel="stylesheet" />
<link href="res/images/images.css" rel="stylesheet" />
</head>
<body>
<div class="window">
<header></header>
<sub-header></sub-header>
<div class="content" ng-view></div>
<footer></footer>
</div>
<!-------------------------------- SCRIPT -------------------------------->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular-route.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="app/app.js"></script>
<script src="app/home/home.js"></script>
<script src="app/error/error.js"></script>
<script src="app/awa/awa.js"></script>
<script src="app/awa/awa-question-loader.js"></script>
<script src="app/awa/awa-operation.js"></script>
<script src="app/calculator/calculator.js"></script>
<script src="app/calculator/calculator-operation.js"></script>
<script src="app/vocab/vocab.js"></script>
<script src="app/vocab/vocab-loader.js"></script>
<script src="app/common/header.js"></script>
<script src="app/common/sub-header.js"></script>
<script src="app/common/footer.js"></script>
<script src="app/common/timer.js"></script>
<script src="app/common/timer-functionality.js"></script>
</body>
</html>