website
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="icon" type="image/png" href="/favicon.png" />
    <title>bendn - chess</title>
    <script
      src="https://kit.fontawesome.com/be4f130556.js"
      crossorigin="anonymous"
    ></script>
    <script src="/components/backbutton.js"></script>
    <script src="/components/downloadbutton.js"></script>
    <script src="/components/screenshotlist.js"></script>

    <link rel="stylesheet" href="/style/chess.css" />
    <link rel="stylesheet" href="/style/styles.css" />
  </head>
  <body>
    <div id="wrapper">
      <back-button></back-button>
      <h1 class="header">Chess</h1>
      <div id="inner_column">
        <div class="button_list">
          <download-button game="chess"></download-button>
          <a class="button" href="https://bend-n.github.io/chess">
            <i class="fa-solid fa-circle-play"></i> play
          </a>
          <a class="button" href="https://bendn.itch.io/chess">
            <i class="fa-brands fa-itch-io"></i> view
          </a>
          <a class="button" href="https://github.com/bend-n/chess">
            <i class="fa-brands fa-github"></i> source
          </a>
        </div>
        <p>A simple chess project</p>
        <screenshot-list
          images="/img/chess/ss1.png /img/chess/ss2.png /img/chess/ss3.png"
        ></screenshot-list>
      </div>
    </div>
  </body>
</html>