-
Notifications
You must be signed in to change notification settings - Fork 0
/
levels.html
51 lines (51 loc) · 1.43 KB
/
levels.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
<!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>
<article>
<img src="img/img1.png">
<h3>Labirinth #1</h3>
<p>Simple teamplate of labirinth 20x20.</p>
<a href="levels/level_1/level_1.html" class="play-button">PLAY</a>
</article>
<hr>
<article>
<img src="img/img1.png" class="right-align">
<h3>Labirinth #2</h3>
<p>One more simple labirinth.</p>
<a href="levels/level_2/level_2.html" class="play-button">PLAY</a>
</article>
<hr>
<article>
<img src="img/img1.png">
<h3>Labirinth #3</h3>
<p>Okay, it's time for more difficult level, so here it goes!</p>
<a href="levels/level_3/level_3.html" class="play-button">PLAY</a>
</article>
<hr>
<a href="random.html" class="end-button">Try random Level</a>
</section>
<footer>Brave Pepper Inc © 2017</footer>
</div>
</body>
</html>