-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·70 lines (66 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
executable file
·70 lines (66 loc) · 2.45 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Desire Works</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/jpg" href="images/logoSE.jpg">
<link href="https://fonts.googleapis.com/css?family=Caveat:400,700" rel="stylesheet">
<link href="css/dw.css" rel="stylesheet">
</head>
<body>
<div class="container indexBack">
<header>
<!-- Hamburger Menu: Made by Erik Terwan -->
<!-- 24th of November 2015 -->
<!-- MIT License -->
<nav>
<div id="menuToggle">
<!--
A fake / hidden checkbox is used as click reciever,
so you can use the :checked selector on it.
-->
<input type="checkbox" />
<!--
Some spans to act as a hamburger.
They are acting like a real hamburger,
not that McDonalds stuff.
-->
<span></span>
<span></span>
<span></span>
<!--
Too bad the menu has to be inside of the button
but hey, it's pure CSS magic.
-->
<ul id="menu">
<li><a href="#" class="activeLink">Home</a></li>
<li><a href="intro.html">Introduction</a></li>
<li><a href="songs.html">Songs</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</div>
<div class="laptopScreen">
<a href="#" class="activeLink">Home</a>
<a href="intro.html" class="greyText">Introduction</a>
<a href="songs.html" class="greyText">Songs</a>
<a href="credits.html" class="greyText">Credits</a>
<a href="gallery.html" class="greyText">Gallery</a>
</div>
</nav>
</header>
<main>
<div class="indexMain">
<div class="centerItem"><h1>Desire Works</h1></div>
<div class="centerItem"><p class="spaceBottom">an Opera Ballet</p></div>
<div class="centerItem"><p class="spaceTop">by</p></div>
<div class="centerItem"><h2>Johan Stjernholm</h2></div>
</div>
</main>
<footer>
<div class="greyText">© 2018 Johan Stjernholm</div>
</footer>
</div>
</body>
</html>