2025-09-25 22:16:05 +10:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>gride</title>
|
|
|
|
|
<script src="index.js"></script>
|
2025-09-25 09:07:44 +10:00
|
|
|
<link rel="stylesheet" href="index.css">
|
2025-09-25 22:16:05 +10:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-09-25 09:07:44 +10:00
|
|
|
<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>
|
2025-09-25 22:16:05 +10:00
|
|
|
</body>
|
|
|
|
|
</html>
|