-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.46 KB
/
index.html
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
35
36
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>JumpApe</title>
</head>
<body style="background-color: black;">
<div class="container border-bottom" style="height: 95px;">
<h1 class="float-left display-3 text-white">JUMP APE</h1>
<a href="https://ape-unit.github.io/"><img class="float-right pt-2" id="logo" src="logo.png" alt="ApeUnit" style="width:80px;height:80px;"></a>
<div class="clearfix"></div>
<hr>
</div>
<div class="container mx-auto text-center" style="height: 60%">
<div class="container" style="height: 15%;"></div>
<canvas class="img-thumbnail" id="myCanvas" width="480" height="320" style="background-color: white;"></canvas>
</div>
<div class="container mx-auto text-white text-center">
<div class="container mx-auto">
<h1 class="display-5 text-center">Controls:</h1>
</div>
<div class="container mx-auto">
<p class="text-center">Move: Left/Right Arrows</p>
</div>
<div class="container mx-auto">
<p>Jump: Up Arrow</p>
</div>
</div>
<script src="app.js"></script>
</body>