-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.12 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
<!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.0" />
<title>Place Keeper</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body onload="onInit()">
<header class="main-layout">
<div class="title">Place Keeper</div>
</header>
<nav>
<div class="main-layout">
<div class="name">Welcome <span>guest</span>!</div>
<ul>
<li>
<a class="active" href="index.html">Home</a>
</li>
<li>
<a href="map.html">Places</a>
</li>
<li>
<a href="user-prefs.html">User Prefernces</a>
</li>
</ul>
</div>
</nav>
<main></main>
<footer></footer>
<script src="js/services/storage.service.js"></script>
<script src="js/services/user.service.js"></script>
<script src="js/services/place.service.js"></script>
<script src="js/main.controller.js"></script>
</body>
</html>