mirror of
https://github.com/thib8956/tic-tac-toe-ws.git
synced 2024-11-17 01:16:33 +00:00
11 lines
220 B
HTML
11 lines
220 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello websockets</title>
|
|
</head>
|
|
<body>
|
|
<canvas id="game" width=800 height=600></canvas>
|
|
</body>
|
|
<script type="module" src="client.mjs"></script>
|
|
</html>
|