1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2024-09-28 21:56:38 +00:00
tic-tac-toe-ws/index.html

11 lines
304 B
HTML
Raw Permalink Normal View History

2024-09-02 20:34:24 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Hello websockets</title>
</head>
2024-09-24 13:50:08 +00:00
<body style="margin: 0; padding 0; overflow: hidden; background-color: #000000">
<canvas id="game" width="800" height="600"></canvas>
2024-09-03 12:07:13 +00:00
</body>
2024-09-25 18:21:02 +00:00
<script type="module" src="client.js"></script>
2024-09-02 20:34:24 +00:00
</html>