-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>BF2</title>
</head>
<body>
<textarea id="code-area" placeholder="Enter brainfuck code"></textarea>
<div class="utility_nav">
<button id="RunBF2">Run BrainFuck2</button>
<button id="RunFI">Run FuckIt (text to BF2)</button>
<button id="Stop" disabled>Stop Code</button>
<button id="Clear">Clear Terminals</button>
<button id="Download">Download</button>
<input id="Upload" type="file" title="Upload File"/>
<div class="tapecheck">
<input type="checkbox" title="Output Tape" id="tape_out_checkbox"/>
<label for="tape_out_checkbox">Output Tape (Impacts performance)</label>
</div>
</div>
<div class="terminals">
<textarea id="terminal" placeholder="Output Terminal"></textarea>
<textarea id="tape_terminal" placeholder="Tape Terminal" disabled></textarea>
</div>
</body>
<script src="fuckIt.js"></script>
<script src="BF2.js"></script>
<script src="main.js"></script>
</html>