15 lines
360 B
HTML
15 lines
360 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<script type="module" src="src/index.js"></script>
|
||
|
<title>Game</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>THIS IS A TEST</h1>
|
||
|
<div id="board">
|
||
|
<!-- Renderer will push content here -->
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|