-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
60 lines (58 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<title>Rules</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<nav>
<div id="navleft" class="centered">
JSXiangqi Game
</div>
<div class="topdiv">
<a class="topmenu" href="./index.html">Play Game</a>
<a class="topmenu" href="./rule.html">How to Play</a>
</div>
</nav>
<!-- about -->
<div class="content">
<h1>About This Project</h1>
<!-- introduction -->
<div>
<h2>Introduction</h2>
<div>
This is a simple web-based xiangqi game that I created with JavaScript,
HTML and CSS. Xiangqi is a traditional Chinese board game that is similar
to chess, but with some unique rules and pieces. You can play this game against
a friend on the same device, the function of against a basic AI opponent is developing.
</div>
</div>
<!-- features -->
<div>
<h2>Features</h2>
<div>
<ul>
<li>A 9x10 board with 32 pieces representing two armies: red and black.</li>
<li>Click interface for moving the pieces.</li>
<li>Basic rules enforcement and checkmate detection.</li>
<li>A reset button to start a new game.</li>
<li>The game will stop if one of the general is checkmated.</li>
</ul>
</div>
</div>
<!-- license -->
<div>
<h2>License</h2>
<div>
This project is licensed under the Apache-2.0 license - see the LICENSE file for details.
</div>
</div>
<!-- feedback -->
<h2>Feedback</h2>
<div>
If you have any feedback or suggestions for this project, feel free to open an issue on GitHub. I hope you enjoy playing this game!
</div>
</div>
</body>
</html>