pico-website/web/index.html
2025-04-07 18:49:18 +02:00

30 lines
675 B
HTML

<!doctype html>
<head>
<script src="./htmx.js"></script>
<style type="text/css">
body {
#grid {
.cell {
border: 1px dotted black;
padding: 33%;
}
display: grid;
border: 1px solid black;
grid-template-rows: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
}
}
</style>
</head>
<html>
<body>
<h1>TicTacToe</h1>
<div
id="grid"
hx-post="/ttt/board"
hx-swap="innerHTML"
hx-trigger="load"
></div>
</body>
</html>