-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.16 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
<!DOCTYPE html>
<html lang="de">
<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" />
<link rel="stylesheet" href="style.css" />
<title>Digitales Storytelling im Web</title>
</head>
<body>
<header>
<h1>Digitales Storytelling im Web</h1>
</header>
<main>
<section id="story-choices">
<div class="story-choice">
<a class="btn" href="./text-story">Storytelling mit Text</a>
</div>
<div class="story-choice">
<a class="btn" href="./text-img-story">
Storytelling mit Text und Bild
</a>
</div>
<div class="story-choice">
<a class="btn" href="./scrolly-story">Multimediales Scrollytelling</a>
</div>
</section>
</main>
<footer>
<p class="footer-note">
made with ❤ by
<a href="https://github.com/JanKoll" target="_blank">Jan Koll</a> and
<a href="https://github.com/mweiershaeuser" target="_blank"
>Melvin Weiershäuser</a
>
</p>
</footer>
</body>
</html>