-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweets.html
48 lines (42 loc) · 1.16 KB
/
tweets.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
<!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='#'>My Boss' Tweet</a></li>
<li><a href='index.html'>Data Nomad 101</a></li>
</ul>
</div>
<div class="information">
<img src="img/tweet_images.PNG" alt="image gallery">
<p>I am thinking bootstrap framework and jquery</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>