Dyno / index.html
api-ix's picture
Update index.html
c0d14bf verified
Raw
History Blame Contribute Delete
406 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dinosaur Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="game-container">
<div id="dino"></div>
<div id="obstacle"></div>
</div>
<div id="score">Score: 0</div>
<script src="script.js"></script>
</body>
</html>