-
Notifications
You must be signed in to change notification settings - Fork 69
/
dk.html
91 lines (66 loc) · 2.56 KB
/
dk.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="">
<meta name="description" content="Play your favorite online games free now!">
<meta name="language" content="English">
<title>Donkey Kong</title>
<link rel="icon" type="image/x-icon" href="/assets/img/socials/.png" />
<link rel="mask-icon" type="" href="/assets/img/socials/.png" color="#111" />
<link rel="stylesheet" href="/main.css">
<link rel="stylesheet" href="/contentpage.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<noscript>Your browser doesn't have JavaScript enabled. Please enable JavaScript or switch to a browser that
supports it.</noscript>
<style>
html {
scroll-behavior: smooth;
}
body {
font-family: 'Syne', sans-serif;
background-color: #000000;
}
</style>
</head>
<body>
<div class="content-wrapper" align="center">
<div class="main-content">
<section class="content">
<div class="content-container">
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = 'nes';
// Lightgun
EJS_lightgun = false;
// URL to Famicom Disk System bios
EJS_biosUrl = '';
// URL to Game rom
EJS_gameUrl = '/gdata/Donkey Kong (World) (Rev A).nes';
/*
* Path to the WASM / JS files
* HAS TO BE in the same directory.
*/
EJS_pathtodata = 'data/';
</script>
<script src='data/loader.js'></script>
<div class="bar">
<div class="bar-left">
<h1 id="content-title">Donkey Kong</h1>
<h3 id="content-creator">by Nintendo</h3>
</div>
</div>
</div>
</section>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="/main.js"></script>
<script src="/contentpage.js"></script>
</body>
</html>