-
Notifications
You must be signed in to change notification settings - Fork 188
/
index.html
41 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" ng-app="assessment">
<head>
<meta charset="UTF-8">
<title>Front End Assessment</title>
<link rel="stylesheet" href="./styles/app.css">
</head>
<body>
<!--This div wraps the entire page-->
<div class="site-wrapper">
<!--Here is your header with the navigation nested inside -->
<header class="site-header" role="banner">
<div class="container">
<!--Insert Logo directive here -->
<nav class="site-nav">
<ul class="primary-nav">
<!-- Navs go here -->
</ul>
</nav>
<button class="hamburger toggle-nav js-toggle-nav" ng-click="showNav">
<span class="hamburger-box"><span class="hamburger-inner"></span>
</span>
</button>
</div>
</header>
<!--This is the main wrapper -->
<main class="site-main" role="main">
<!--Views go here -->
</main>
</div>
<!--ADD ALL YOUR SCRIPTS HERE -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.3.1/angular-ui-router.min.js"></script>
</body>
</html>