Source code of a Chess game made with HTML, CSS, and Javascript.

Play Now:
HTML code:
<div id="container"></div>
CSS code:
body {
font-family: chess;
margin: 0;
background-color: #000;
}
.square {
background: #000;
display: inline-block;
border: 1px solid #fff;
text-align: center;
position: absolute;
cursor: pointer;
}
JavaScript code:
<script src="https://cdn.jsdelivr.net/gh/janak0ff/Chess-Game@master/Chess%20Game.js"></script>
