Skip to content

Instantly share code, notes, and snippets.

View snsapss's full-sized avatar

snsapss

  • Joined Apr 21, 2026
View GitHub Profile
@snsapss
snsapss / index.html
Last active April 21, 2026 17:15
connect4
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{background:#0f1220;color:white;text-align:center;font-family:Arial}
#board{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin:20px}
.cell{aspect-ratio:1;border-radius:50%;background:#1e2240}
.p1{background:#ff4d4d}
.p2{background:#ffd24d}