mirror of
https://github.com/thib8956/tic-tac-toe-ws.git
synced 2026-02-21 07:48:12 +00:00
13 lines
458 B
HTML
13 lines
458 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 type="module" src="client.js"></script>
|
|
</html>
|