summaryrefslogtreecommitdiffstats
path: root/games/go.html
blob: b1bdd8f0636368f1652025607e3bb35099e74a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>Go</title>
    <link rel="stylesheet" type="text/css" href="../style.css"/>
  </head>
  <body>
    <table>
      <tr> <!-- black stones -->
	<td class="dup">&#x25CF;</td> <!-- BLACK CIRCLE -->
	<td>&#x2688;</td>             <!-- BLACK CIRCLE WITH WHITE DOT RIGHT -->
	<td>&#x2689;</td>             <!-- BLACK CIRCLE WITH TWO WHITE DOTS -->
      </tr>
      <tr> <!-- white stones -->
	<td class="dup">&#x25CB;</td> <!-- WHITE CIRCLE -->
	<td>&#x2686;</td>             <!-- WHITE CIRCLE WITH DOT RIGHT -->
	<td>&#x2687;</td>             <!-- WHITE CIRCLE WITH TWO DOTS -->
      </tr>
    </table>
  </body>
</html>