17 lines
532 B
HTML
17 lines
532 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="/game/" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>game</title>
|
|
</head>
|
|
<body>
|
|
<div id="imposterState" class="imposterState"></div>
|
|
<div id="word" class="word"></div>
|
|
<button onclick="reset()" class="resetButton">Neues Spiel</button>
|
|
<script src="./game.js"></script>
|
|
</body>
|
|
</html>
|