ConnectForce/src/index.html

17 lines
392 B
HTML
Raw Normal View History

2022-12-05 17:47:05 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vier gewinnt</title>
2022-12-06 12:17:21 +00:00
<link rel="stylesheet" href="./styles/style.css" />
2022-12-05 17:47:05 +00:00
<script type="module" src="./js/main.js"></script>
</head>
<body>
2022-12-13 11:54:49 +00:00
<div id="game">
2022-12-05 17:47:05 +00:00
</div>
2022-12-13 10:08:52 +00:00
<button class="button new-game">
New Game
</button>
2022-12-05 17:47:05 +00:00
</body>
2022-12-08 12:31:04 +00:00
</html>