-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (54 loc) · 2.69 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
61
62
<!DOCTYPE html>
<html>
<head>
<title>ESboy</title>
<meta charset="utf-8">
<meta name="description" content="ESboy - Free Web Game Boy Color emulator">
<meta name="keywords" content="gameboy,gb,emulator,retro,consoles,handheld">
<meta name="author" content="Luc Rubio">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="src/web/css/style.css"/>
<link rel='shortcut icon' type='image/x-icon' href='src/web/img/favicon.ico'/>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<nav class="dropdownmenu">
<ul>
<li><a class="title">ESboy</a></li>
<li class="fileUpload">
<a><i class="icon folder"></i> LOAD GAME</a>
<input id="cartridge" type="file" class="upload" />
</li>
<!--<li><a href="#"><i class="fa fa-info-circle" aria-hidden="true"></i>About</a></li>-->
</ul>
</nav>
<div id="screen">
<canvas width="160" height="144"></canvas>
</div>
<footer>
<div id="controls">
<span><kbd>←</kbd><kbd>↑</kbd><kbd>→</kbd><kbd>↓</kbd>
A<kbd>X</kbd>
B<kbd>Z</kbd>
START<kbd>Enter</kbd>
SELECT<kbd>Ctrl</kbd></span>
</div>
<a class="github-button" href="https://github.com/loociano/ESboy" data-count-href="/loociano/ESboy/stargazers" data-count-api="/repos/loociano/ESboy#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star loociano/ESboy on GitHub">Star</a>
<form class="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="UBZKBVWZRVTBJ">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="Donate to this project with PayPal" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</footer>
</body>
<script src="esboy.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85015291-1', 'auto');
ga('send', 'pageview');
</script>
</html>