37 lines
891 B
HTML
37 lines
891 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Flappy Bird</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
background: #1a1a2e;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
font-family: 'Segoe UI', sans-serif;
|
|
color: #fff;
|
|
}
|
|
canvas {
|
|
border: 3px solid #16213e;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 40px rgba(0,200,255,0.2);
|
|
display: block;
|
|
}
|
|
#info {
|
|
margin-top: 12px;
|
|
font-size: 14px;
|
|
opacity: 0.6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="gameCanvas" width="400" height="600"></canvas>
|
|
<div id="info">Space / Click / Tap to flap</div>
|
|
<script src="game.js"></script>
|
|
</body>
|
|
</html>
|