leanwebclub/js-essentials/monster-game/index.html

21 lines
672 B
HTML

<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
<link rel="stylesheet" href="style.css">
<title>Monster Game</title>
</head>
<body>
<h1>Monster Game</h1>
<div id="app">
</div>
<div id="controls" style="padding: 0.8em 0 0 0; text-align: center;">
</div>
<footer>
<p>My solutions to the <a href="https://leanwebclub.com">The Lean Web Club</a> projects.</p>
</footer>
<script src="script.js"></script>
</body>
</html>