UNPKG

chessgroundx

Version:

Extended lichess.org Chess UI

33 lines (28 loc) 855 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Chessground Demo</title> <link rel="stylesheet" type="text/css" href="assets/chessground.base.css" /> <link rel="stylesheet" type="text/css" href="assets/chessground.brown.css" /> <link rel="stylesheet" type="text/css" href="assets/chessground.cburnett.css" /> <style> #chessground { width: 500px; height: 500px; } cg-board { background-color: #bfcfdd; } </style> <script type="module"> import { Chessground } from './chessground.js'; const config = {}; const ground = Chessground(document.getElementById('chessground'), config); </script> </head> <body> <div id="chessground"></div> </body> </html>