websocket_example/index.html
2023-08-08 13:20:03 +10:00

18 lines
367 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Connect Four</title>
</head>
<body>
<div class="actions">
<a class="action new" href="/">New</a>
<a class="action join" href="">Join</a>
<a class="action watch" href="">Watch</a>
</div>
<div class="board"></div>
<script src="main.js" type="module"></script>
</body>
</html>