18 lines
226 B
HTML
18 lines
226 B
HTML
<!doctype html>
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
|
|
Hello, world.
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="/js/client.js"></script>
|
|
|
|
<script>
|
|
// Run the client.
|
|
new Client();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|