34 lines
846 B
HTML
34 lines
846 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Phaser 3 Card Battle Game</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
#game-container {
|
|
width: 1600px;
|
|
height: 900px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="game-container"></div>
|
|
|
|
<!-- Load Phaser 3 from CDN -->
|
|
<script src="https://cdn.jsdelivr.net/npm/phaser@3.70.0/dist/phaser.min.js"></script>
|
|
|
|
<!-- Game script -->
|
|
<script src="src/main.js" type="module"></script>
|
|
</body>
|
|
</html>
|