ConnectForce/src/index.html
Manuel Thalmann 4717a6e4e9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add code for automatically creating game board
2022-12-07 22:24:48 +01:00

13 lines
326 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vier gewinnt</title>
<link rel="stylesheet" href="./styles/style.css" />
<script type="module" src="./js/main.js"></script>
</head>
<body>
<div class="board" id="board">
</div>
</body>
</html>