18 lines
521 B
HTML
18 lines
521 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Erste Socket.io Seite</title>
|
|
<link rel="stylesheet" href="style/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Multigame</h1>
|
|
</body>
|
|
|
|
<script src="https://cdn.socket.io/4.7.2/socket.io.min.js"></script>
|
|
<script src="index.js" type="module"></script>
|
|
|
|
<canvas id="game" height="300px" width="300px" id> </canvas>
|
|
</html>
|