1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2026-02-21 07:48:12 +00:00
Files
tic-tac-toe-ws/index.html

14 lines
496 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello websockets</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
</head>
<body style="margin: 0; padding: 0; overflow: hidden; background-color: #000000; touch-action: none;">
<canvas id="game"></canvas>
</body>
<script src="config.js"></script>
<script type="module" src="client.js"></script>
</html>