30 lines
582 B
HTML
30 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html lang="sl">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Nova Farma - Clean Start</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
background: #000;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
/* Ohrani ostrino */
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Phaser Library -->
|
|
<script src="../node_modules/phaser/dist/phaser.js"></script>
|
|
<!-- Game Entry -->
|
|
<script type="module" src="../src/game.js?v=2"></script>
|
|
</body>
|
|
|
|
</html> |