-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.03 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
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Penelope the Penguin</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
</head>
<body>
<div id='header'>
<div id='by'>
<div id='thumbnails'>
<a href="https://www.linkedin.com/in/nathan-johnson-e-i-t-66310941/" id='linkedin'>
<img src="./assets/linkedin.png" width='40' height='40' alt="">
</a>
<a href="https://github.com/NateDawg90" id='github'>
<img src="./assets/github.png" width='40' height='40' alt="">
</a>
</div>
</div>
<p id='title'>Penelope the Penguin</p>
<div id='description'>
<div id='desc-body'>
<p>Guide Penelope through the treacherous</p>
<strong>Sea Cavern</strong>
</div>
<p id='controls'>Space/Click = swim down</p>
</div>
</div>
<canvas id="myCanvas" width="1250" height="670">
<canvas id="penguin"></canvas>
</canvas>
<script src="bundle.js"></script>
</body>
</html>