25 lines
720 B
HTML
25 lines
720 B
HTML
<!DOCTYPE html>
|
|
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<html>
|
|
|
|
<head>
|
|
<title>WordCollector</title>
|
|
</head>
|
|
<body>
|
|
|
|
<canvas id="canvas" draggable="false">
|
|
Your browser does not support the canvas element.
|
|
</canvas>
|
|
|
|
<div class="points"><img class="medal" src="src/img/medal.png"><span id="points">0</span></div>
|
|
<div id="slots">
|
|
</div>
|
|
<div id="guess" class="guess"></div>
|
|
<div class="hint"><img id="hint" alt="hint" src="src/img/hint.png" width="50px"></div>
|
|
<div class="reload"><img id="reload" alt="shuffle" src="src/img/reload.png" width="50px"></div>
|
|
<div id="characters"></div>
|
|
|
|
<script src="bundle.js"></script>
|
|
</body>
|
|
|
|
</html>
|