-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Labirinths</title>
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>FIND RED SQUARE</h1>
<nav>
<ul>
<li><a href="index.html">Main</a></li>
<li><a href="levels.html">Levels</a></li>
<li><a href="labirint/custom.html">Custom Lab</a></li>
<li><a href="labirint_builder/builder.html">Builder</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<section>
<h2>About</h2>
<article>
<img src="img/img1.png">
<h3>Goals of game?</h3>
<p>You are here, on that green square. Green square is the start of the level. O! <-- it is you. All this darkness around is a hidden part of level. Use "W", "A", "S", "D", to move. Your mission is to find red square as fast as possible(if it is :D).</p>
</article>
<hr>
<article>
<img src="img/img1.png" class="right-align">
<h3>Monsters around! (not implemented yet...)</h3>
<p>Some monsters can block the best paths, try not to meet them face to face.</p>
</article>
<hr>
<article>
<img src="img/img1.png">
<h3>Secrets? Tss... (not implemented yet...)</h3>
<p>Different panels on the floor can make some walls to apper on your way or disapper. Be carefull using them it can be dangerous!</p>
</article>
<hr>
<a href="random.html" class="end-button">Try random Level</a>
</section>
<footer>Brave Pepper Inc © 2017</footer>
</div>
</body>
</html>