1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2025-02-22 00:38:16 +00:00
tic-tac-toe-ws/index.html

12 lines
263 B
HTML
Raw Normal View History

2024-09-02 22:34:24 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Hello websockets</title>
</head>
2024-09-03 14:07:13 +02:00
<body>
2024-09-08 12:05:02 +02:00
<canvas id="game" width=800 height=600></canvas>
<h1 id="title">Offline</h1>
2024-09-03 14:07:13 +02:00
</body>
2024-09-02 22:34:24 +02:00
<script type="module" src="client.mjs"></script>
</html>