-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 894 Bytes
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>lisp.js</title>
<script type="text/javascript" src="lisp.js"></script>
<script type="text/javascript" src="repl.js"></script>
<style type="text/css">
#repl {
width:600px;
height:400px;
margin:100px auto;
background:black;
padding:10px;
overflow-y:scroll;
}
#repl p {
padding:2px 5px;
margin:0;
}
.repl_output,
.repl_input {
color:#fff;
background:black;
font-family:Monaco;
font-size:12px;
border:0;
}
.repl_prompt {
width:100px;
float:left;
}
.repl_input {
width:470px;
}
</style>
</head>
<body>
<div id="repl"></div>
</body>
</html>