1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/docs/index.html

55 lines
995 B
HTML
Raw Normal View History

2021-09-23 01:41:44 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
2022-02-21 11:11:18 -05:00
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
2021-09-23 01:41:44 -05:00
<title>java2js test</title>
<style>
body,
textarea {
background: #000;
color: #eee;
}
textarea {
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
#javaFile {
2022-02-20 13:52:18 -05:00
width: 48vw;
height: 97vh;
2021-09-23 01:41:44 -05:00
}
#javaConsole {
2022-02-20 13:52:18 -05:00
width: 48vw;
height: 97vh;
float: right;
2021-09-23 01:41:44 -05:00
}
</style>
</head>
<body>
2022-02-20 13:52:18 -05:00
<textarea
id="javaFile"
spellcheck="false"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
placeholder="Create a Java class with a main method here..."
></textarea>
<textarea
id="javaConsole"
spellcheck="false"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
placeholder="Java console, click here to run!"
></textarea>
2021-10-31 14:16:44 -05:00
2022-02-21 11:11:18 -05:00
<script type="text/javascript" src="../jdk.js"></script>
2021-09-23 01:41:44 -05:00
<script type="text/javascript" src="ide.js"></script>
</body>
</html>