djdj - HTMLify profile

djdj's Profile Picture

djdj

471 Files

103674 Views

Latest files of /djdj/djupraity/chess

Chess Game djdj/djupraity/chess/index.html
297 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess Game</title>
<link rel="stylesheet" href="style.css">
</head>
djdj/djupraity/chess/style.css
164 Views
0 Comments
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: #2c3e50;
color: white;
}

h1 {
djdj/djupraity/chess/script.js
256 Views
2 Comments
const board = document.getElementById("chessboard");
const turnDisplay = document.getElementById("turn");
const undoButton = document.getElementById("undo");

const pieces = {
r: "♜", n: "♞", b: "♝", q: "♛", k: "♚", p: "♟",
R: "♖", N: "♘", B: "♗", Q: "♕", K: "♔", P: "♙"
};