JS_Projects/dinosaurrGame/index.html
Dawid Pietrykowski 25a12f221e Initial commit
2022-11-09 23:34:49 +01:00

16 lines
524 B
HTML
Executable File

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chrome Dinosaur</title>
<style> body {padding: 0; margin: 0;} </style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="sketch.js"></script>
<script src="dino.js"></script>
</head>
<body>
</body>
</html>