-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch.html
47 lines (41 loc) · 1.16 KB
/
sketch.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 name="viewport" content="width=device-width,initial-scale=1">
<title>Sandals</title>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
</head>
<body>
<header>
<img src="img/docs-logo.jpeg" alt="logo">
<h1>Sandals of a Data Nomad</h1>
</header>
<main>
<div id='cssmenu'>
<ul>
<li><a href='index.html'>Dashboards</a></li>
<li><a href='tweets.html'>My Boss' Tweet</a></li>
<li><a href='index.html'>Data Nomad 101</a></li>
</ul>
</div>
<div class="information">
<p>Most times, my mind sees things better than my fingers can type. I am a visual person.</p>
</div>
<!-- temporarily disable the button filters. no posts will be be displayed for now
<nav id="filter"></nav>
-->
<div id="container"></div>
<div id="notice"></div>
</main>
<footer>
<p>The Data Nomad</p>
</footer>
<script src="js/main.js"></script>
<script>
document.addEventListener('DOMContentLoaded', app.init);
</script>
</body>
</html>