-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
45 lines (39 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>Skilldrick's JavaScript brainfuck interpreter</title>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/style.css" rel="stylesheet" media="screen">
</head>
<body>
<h1>brainfuck</h1>
<form>
<table>
<tr>
<td><p><label for='code'>Code</label></p></td>
<td><input name='code' id='code'></input></td>
</tr>
<tr>
<td><label for='input'>Input</label></td>
<td><input name='input' id='input'></input></td>
</tr>
</table>
<p>
<input type='submit' value='Run' />
</p>
</form>
<p id='output'></p>
<p><a id='url' href='http://skilldrick.co.uk/brainfuck'>This code and input as a URL</a></p>
<p><a href="https://github.com/skilldrick/brainfuck-js">
Fork me on github!</a></p>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/brainfuck.js"></script>
<script>
var _gaq=[['_setAccount','UA-3174668-9'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>