-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (136 loc) · 5.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Moth's Tale</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/JavaScript" src="slider.js"></script>
<link rel="stylesheet" type="text/css" href="navbar.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<style>
.auto-resizable-iframe {
max-width: 50%;
margin: 0px auto;
}
.auto-resizable-iframe > div {
position: relative;
padding-bottom: 60%;
height: 0px;
}
.auto-resizable-iframe iframe {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
/* Make it work for mobile devices */
@media screen and (max-width: 600px) {
.auto-resizable-iframe {
max-width: 95%;
}
}
</style>
</head>
<body onload="showSlides(1)">
<header>
<nav>
<div class="menu-icon">
<i class="fa fa-bars fa-2x"></i>
</div>
<div class="menu">
<ul>
<li><a href="index.html#">Home</a></li>
<li><a href="howToPlay.html">How To Play</a></li>
<li><a href="controls.html">Controls</a></li>
<li><a href="enemies.html">Lights and Enemies</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="speedruns.html">Speedruns</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
</nav>
</header>
<div class="main">
<div align="center" class="mainpage">
<br>
<!-- Title-->
<p style="font-size:400%">A Moth's Tale</p>
<p style="font-size:175%">Created by Studio 7</p>
<!-- Description-->
<p> <!-- put the description in there-->
Embark on a captivating journey in "A Moth's Tale - Flight from Light"!
</p>
<p>
Experience the Story of a moth with a broken wing in this stunning 2D hand-drawn platformer.
</p>
<p>
Witness the moth's emotional tale as it navigates through treacherous levels, traversing dark forests, caves and swamps. <br>
Utilizing the many lights along the way to reach the end of your journey, you'll need to face many dangers. <br>
With beautiful visuals and an engaging narrative, immerse yourself in the world of this brave moth as it seeks safety and freedom at the elusive "Tree of Light."
</p>
<p> Can you help the moth overcome its limitations and conquer the challenges that await? <br>
Get ready to spread your wings and experience the magic of "A Moth's Tale - Flight from Light"!
</p>
<!-- Trailer-->
<p style="font-size:175%">Trailer</p>
<div class="auto-resizable-iframe">
<div>
<iframe
width="560"
height="315"
src="https://www.youtube-nocookie.com/embed/EXVHhKy7DEU"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
</div>
</div>
<br>
<br>
<!-- Download Link-->
<a href="download.html">
<button class="button" type="button">
Download Now
</button>
</a>
<footer>
<hr class="horizontal line">
<!-- credits-->
<table>
<tr>
<h1><b>Credits</b></h1>
</tr>
<tr>
<td>Achilleas Tagalidis</td>
</tr>
<tr>
<td>Alexander Ritter</td>
</tr>
<tr>
<td>Elias Altmann</td>
</tr>
<tr>
<td>Jason Pywell</td>
</tr>
<tr>
<td>Nicole Bretz</td>
</tr>
<tr>
<td>Regine Lendway</td>
</tr>
<tr>
<td>Samuel Scheer</td>
</tr>
</table>
<p>Project for Praktikum Computerspiele & Visual Effects / Computergrafik at the Eberhard Karl University of Tübingen</p>
</footer>
</div>
</div>
</body>
<script type="text/JavaScript" src="navbar-responsive.js"></script>
</html>