14 lines
270 B
HTML
14 lines
270 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Game</title>
|
|
<link rel="stylesheet" href="res/main.css" />
|
|
</head>
|
|
<body>
|
|
<div id="board">
|
|
<!-- Renderer will push content here -->
|
|
</div>
|
|
<script type="module" src="src/main.js"></script>
|
|
</body>
|
|
</html>
|