-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
42 lines (36 loc) · 1.98 KB
/
games.html
File metadata and controls
42 lines (36 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Games - Seclusion Game Engine</title>
<meta charset="UTF-8">
<meta name="description" content="Libre open source 2-D game engine for Python">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
<head>
<body>
<h1 class="header"><img src="images/sge_logo_alpha_black_2x.png" alt="Seclusion Game Engine"></h1>
<nav class="header">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li class="current"><a href="games.html">Games</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="doc.html">Documentation</a></li>
<li><a href="https://github.com/python-sge">Project Page</a></li>
</ul>
</nav>
<main>
<h2>Games</h2>
<p>Following is a list of games made with the SGE. If you want your game to appear on this list, please <a href="contact.html">contact us</a> with a link to the game and a screenshot.</p>
<div class="gameslist">
<a href="https://hexoshi.github.io"><img src="images/screenshots/hexoshi.jpg" title="Hexoshi" alt="Hexoshi"></a>
<a href="https://retux-game.github.io"><img src="images/screenshots/retux.jpg" title="ReTux" alt="ReTux"></a>
<a href="https://pacewar.github.io"><img src="images/screenshots/pacewar.jpg" title="Pacewar" alt="Pacewar"></a>
</div>
</main>
<div class="footer">
<a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"><img alt="CC BY-SA" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This page is licensed under the <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</div>
</body>
</html>