-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflappybird.php
More file actions
34 lines (27 loc) · 941 Bytes
/
Copy pathflappybird.php
File metadata and controls
34 lines (27 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php include("includes/a_config.php");?>
<!DOCTYPE html>
<html lang="es">
<head>
<?php include("includes/head-tag-contents.php");?>
</head>
<body>
<?php include("includes/navbar.php");?>
<main>
<section class="section-bg fadeInUp">
<div class="container">
<div class="section-header">
<h2>Flappy Bird</h2>
</div>
<div class="row justify-content-center pb-5">
<div class="col text-center">
<canvas class="border" id="canvas" width="400" height="500"></canvas><br>
<button class="btn button-primary" type="button" id="boton">Iniciar Juego</button>
</div>
</div>
</div>
</section>
</main>
<?php include("includes/footer.php"); ?>
<script src="assets/js/flappybird/flappy.js"></script>
</body>
</html>