-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (50 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CHIP-8 Emulator</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>CHIP-8 Emulator</h1>
<p>By Onur Cinar -
<a href="https://repl.it/@onurcinar/Chip8EmulatorJS">Repl.it</a>
<a href="https://github.com/cinar/Chip8EmulatorJS">GitHub</a>
</p>
<div id="controls">
</div>
<div id="display">
<h1>Display</h1>
</div>
<div class="panel">
<div class="panel-left">
<div id="keyboard">
<h1>Keyboard</h1>
</div>
</div>
<div class="panel-right">
<div id="description">
Please select a game and click the Load button.
</div>
</div>
</div>
<div class="panel">
<div class="panel-left">
<div id="registers">
<h1>Registers</h1>
</div>
<div id="memory">
<h1>Memory</h1>
</div>
</div>
<div class="panel-right">
<div id="instructions">
<h1>Instructions</h1>
</div>
</div>
</div>
<script type="module" src="js/script.js">
</script>
</body>
</html>