rust-gomoku 0.0.2

A console and web-based Gomoku written in Rust and WebAssembly
Documentation
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Gomoku with Rust</title>
    <style>
      @font-face {
        font-family: "Ethna";
        src: url(./statics/fonts/Ethna.otf);
      }
      body {
        font-family: "Ethna";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
    </style>
  </head>
  <body>
    <h1>Gomoku With Rust</h1>
    
    <canvas id="gomoku-canvas"></canvas>
    <script src="./bootstrap.js"></script>
  </body>
</html>