-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arx Chess</title>
<link rel="stylesheet" href="play.css" />
<!-- TODO: own stylesheet -->
<link rel="icon" href="bishop-knight-white.png">
</head>
<body>
<menu>
<li>
<img src="logo-white.png" alt="Arx Chess">
</li>
<li><a href="/select-map.html" class="button">Local game</a></li>
<li><a href="/multiplayer.html" class="button">Create online game (WIP)</a></li>
<li>
The main objective of Arx Chess is to capture all of the opponent's castles. To achieve this, you must gain
control of the board and acquire new pieces. These include not only regular pieces but also compound ones. You
unlock the compound pieces by purchasing the basic ones first. <!-- You need to manage your gold wisely between
expanding your forces and upgrading your castles. -->Have fun!
</li>
<li>
To buy new pieces: click on the castle.
</li>
<li>
To move a piece: click on the piece, then on the desired destination.
</li>
<li><a href="/pieces.html" class="button">All pieces</a></li>
<li><a href="https://github.com/kacperwyczawski/arx-chess" class="button">Source code</a></li>
</menu>
</body>