jacobinathanialpeterson commited on
Commit
9607ac5
·
1 Parent(s): 8f93c53

Create emulatorjs.html

Browse files
Files changed (1) hide show
  1. emulatorjs.html +24 -0
emulatorjs.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>EmulatorJS</title>
5
+
6
+ <link rel="icon" href="https://cdn1.iconfinder.com/data/icons/computer-techologies-outline-free/128/ic_nintendo_switch_logo-512.png" />
7
+
8
+ <meta name="viewport" content="width = device-width, initial-scale = 1" />
9
+
10
+ <link rel="stylesheet" href="style.css" />
11
+ </head>
12
+
13
+ <body>
14
+
15
+ <div id="box">
16
+ <input type="file" id="input" />
17
+ Drag ROM file or click here
18
+ </div>
19
+ <script>
20
+ javascript:window.onbeforeunload = function() { return true }
21
+ </script>
22
+ <script src="script.js"></script>
23
+ </body>
24
+ </html>