<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<title>Flappy Bird</title>
<style media="screen">
#canvas {
border: 2px solid green;
background-color: green;
}
body {
font-family: "Consolas", monospace;
font-weight: bolder;
}
</style>
</head>
<body>
<div class="container">
<h2>FLAPPY BIRD</h2>
<canvas id="canvas" width=600 height=800></canvas><br>
<button id="start-button">Start Game</button>
</div>
<script src="global.js" charset="utf-8"></script>
<script src="resource.js"></script>
<script src="bird.js"></script>
<script src="pipe.js"></script>
<script src="script.js"></script>
</body>
</html>