19 lines
433 B
HTML
19 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>gride</title>
|
|
<script src="index.js"></script>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body>
|
|
<div class="left">
|
|
<code id="editor"></code>
|
|
</div>
|
|
<div class="right">
|
|
<button onclick="runCode()">Run</button>
|
|
<br>
|
|
<code id="console">Output will be shown here, click the run button to run your code!</code>
|
|
</div>
|
|
</body>
|
|
</html>
|