Files
DoubleSnake/frontend/game/index.html

19 lines
565 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doublesnake - Game</title>
<link rel="stylesheet" href="../style/generalStyle.css">
<link rel="stylesheet" href="./style/mainStyle.css">
<link rel="icon" type="image/png" href="../assets/Logo.png">
</head>
<body>
<h1 id="pc"></h1>
<h1 id="rd"></h1>
</body>
<script src="https://cdn.socket.io/4.7.2/socket.io.min.js"></script>
<script type="module" src="./scripts/index.js"></script>
</html>