-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 2.06 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Roman Numeral Quiz</title>
<script src="https://use.fontawesome.com/ee14bb1f23.js"></script>
<link href='https://fonts.googleapis.com/css?family=Oswald:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link rel="icon" href="favicon.ico" sizes="16x16 32x32" type="image/png">
<!-- Libraries -->
<script src="lib/angular.min.js"></script>
<script src="lib/angular-ui-router.min.js"></script>
<!-- Modules -->
<script src="src/romannumeralquiz.module.js"></script>
<!-- Routes -->
<script src="src/routes.js"></script>
<!-- Module artifacts -->
<script src="src/romannumeral.service.js"></script>
<script src="src/quiz.controller.js"></script>
<script src="src/history.controller.js"></script>
</head>
<body ng-app="RomanNumeralQuiz">
<nav>
<a ui-sref="quiz">Quiz</a>
<a ui-sref="history">User History</a>
<a ui-sref="use">Teachers</a>
</nav>
<div class="clear"></div>
<div class="container">
<h1>Roman Numeral Quiz</h1>
<div class="content">
<ui-view></ui-view>
</div>
</div>
<div class="footer">
© <a class="contact" href="http://www.kellylougheed.com" target="_blank">Kelly Lougheed</a> 2018. All rights reserved. <a class="contact" href="mailto:[email protected]?Subject=Hello"><i class="fa fa-envelope-o" aria-hidden="true"></i></a> <a class="contact" href="https://www.linkedin.com/in/kelly-lougheed-ba147b121" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a> <a class="contact" href="https://github.com/kellylougheed" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a> <a class="contact" href="http://www.twitter.com/kellylougheed" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
</body>
</html>