-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
84 lines (80 loc) · 3.74 KB
/
about.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
<html>
<head>
<title>OpenDungeons' Official Project Website</title>
<link href="assets/img/favicon.svg" rel="icon" type="image/x-icon" />
<link type="text/css" rel="stylesheet" href="assets/css/reset.css"/>
<link type="text/css" rel="stylesheet" href="assets/css/default.css"/>
<link type="text/css" rel="stylesheet" href="assets/css/colors.css"/>
<link type="text/css" rel="stylesheet" href="assets/css/fonts.css"/>
<link type="text/css" rel="stylesheet" href="assets/css/css3.css"/>
</head>
<body>
<nav id="mainmenu">
<ul class="menu">
<li>
<a href="index.html">
<div class="icon" id="news-icon"></div>
<h2>News</h2>
</a>
</li>
<li>
<a href="downloads.html">
<div class="icon" id="downloads-icon"></div>
<h2>Downloads</h2>
</a>
</li>
<li>
<a href="http://forum.freegamedev.net/viewforum.php?f=15" target="_blank">
<div class="icon" id="forum-icon"></div>
<h2>Forum</h2>
</a>
</li>
<li>
<a href="https://github.com/OpenDungeons/OpenDungeons/wiki" target="_blank">
<div class="icon" id="wiki-icon"></div>
<h2>Wiki</h2>
</a>
</li>
<li>
<a href="http://webchat.freenode.net/?channels=opendungeons" target="_blank">
<div class="icon" id="chat-icon"></div>
<h2>Webchat</h2>
</a>
</li>
<li>
<a href="about.html">
<div class="icon" id="about-icon"></div>
<h2>The Project</h2>
</a>
</li>
</ul>
</nav>
<div id="wrapper">
<header>
<a href="http://opendungeons.github.io">
<img id="logo" src="assets/img/logo-banner-opendungeons.svg" alt="OpenDungeons-logo"/>
</a>
</header>
<section id="content" class="about">
<h2>About the project</h2>
<section class="golden-bordered-plate">
<h3><a name="contact">Contact</a></h3>
<p>You can contact use by following means:</p>
<ul>
<li><strong>IRC:</strong> <a href="http://webchat.freenode.net/?channels=opendungeons">irc.freenode.net#opendungeons</a></li>
<li><strong>Forums:</strong> <a href="http://forum.freegamedev.net/viewforum.php?f=15">forum.freegamedev.net</a></li>
</ul>
</section>
<!-- News code visual separator -->
<hr>
<section class="golden-bordered-plate">
<h3><a name="about">About</a></h3>
<p>OpenDungeons is an open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius. Players build an underground dungeon which is inhabited by creatures. Players fight each other for control of the underground by indirectly commanding their creatures, directly casting spells in combat, and luring enemies into sinister traps.</p>
</section>
</section>
<footer>
<p>copyleft <a href="#">OpenDungeons Project</a></p>
</footer>
</div>
</body>
</html>