forked from cmda-minor-web-1718/web-app-from-scratch-17-18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="static/css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<title>Web app</title>
</head>
<body>
<header>
<h1><a href="#">Daily meme's</a></h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#memes">Memes</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Hello!</h1>
<p>On this webapp 12 new memes are shown on every day of the week.<span> Enjoy!</span></p>
</section>
<section id="memes">
<div class="sort">
<input type="checkbox" id="alphabethic"><label for="alphabethic">Sort Alphabetically</label>
</div>
<ol id="memeslist">
<li><a data-bind="displayName"></a></li>
</ol>
<div class="loader active">
<img src="static/images/loader.svg" alt="loader">
</div>
<div class="error">
<p><span>Whoops!</span> Something went wrong with getting your daily portion or memes. Check your internet
connection or try again later.</p>
</div>
</section>
<section id="details">
<figure>
<figcaption data-bind="displayName"></figcaption>
<img data-bind="image">
</figure>
</section>
</main>
<script src="static/js/vendors/route.js"></script>
<script src="build/app.bundle.js"></script>
</body>
</html>