-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.05 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
* {
background-color:#000000;
box-sizing: border-box;
color:#ffffff;
margin:0;
overflow:hidden;
padding:0;
}
body, html {
display:flex;
flex-direction: column;
height:100%;
width:100%;
}
button {
border:1px solid white;
padding:4px;
}
button:hover {
background-color:#808080;
}
button:active {
background-color:#000000;
}
textarea {
width:100%
}
</style>
</head>
<body>
<textarea id="textarea"></textarea>
<button id="button">Compile</button>
<script src="byte-code-compiler.js"></script>
<script src="browser-interface.js"></script>
</body>
</html>