Skip to content

Instantly share code, notes, and snippets.

@pablogowez
pablogowez / tableros.html
Created December 29, 2025 02:49
Tableros Ajedrez de Primera
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; background: transparent; overflow: hidden; }
.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 1fr);
width: 100vw; height: 100vh;