-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (40 loc) · 2.26 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<head>
<meta property="og:image"
content="https://github.com/fsiino/fsiino.github.io/blob/master/images/thumbs/project-js-still.png?raw=true" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://fsiino.github.io/swift-plane" />
<meta property="og:title" content="Swift Plane" />
<meta property="og:description" content="Paper Plane side-scroller inspired by Flappy Bird." />
<title>Swift Plane</title>
<script type="text/javascript" src="dist/main.js" charset="utf-8" defer></script>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="assets/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<h1>🛫</h1>
<div class="app-container">
<div class="game-canvas">
<canvas id="plane-game" width="800" height="550" ></canvas>
</div>
<div class="contact">
<a href="https://www.github.com/fsiino" target="_blank"><img alt="github" class="icon" src="assets/github-icon.png"></a>
<a href="https://www.linkedin.com/in/fsiino" target="_blank"><img alt="linkedin" class="icon" src="assets/linkedin-icon.png"></a>
<!-- <a href="#" target="_blank"><img alt="email" class="icon" src="assets/email-icon.png"></a> -->
<!-- <a href="#" target="_blank"><img alt="personal site" class="icon" src="assets/web-icon.png"></a> -->
</div>
</div>
<!-- images -->
<img id="hidden-plane" width="300" height="300" src="assets/plane-active.png">
<img id="hidden-scroll-bg" width="300" height="300" src="assets/bg-scroll.png">
<img id="hidden-bottom-pipe" width="300" height="300" src="assets/pipe-bottom.png">
<img id="hidden-top-pipe" width="300" height="300" src="assets/pipe-top.png">
<!-- <img id="hidden-keyboard-w" width="64" height="64" src="assets/keyboard-w.png">
<img id="hidden-keyboard-a" width="64" height="64" src="assets/keyboard-a.png">
<img id="hidden-keyboard-s" width="64" height="64" src="assets/keyboard-s.png">
<img id="hidden-keyboard-d" width="64" height="64" src="assets/keyboard-d.png">
-->
</body>
</html>