talc/talc-web/index.html
trimill af1dd02257
Some checks failed
webrepl / test (push) Failing after 36s
web repl
2025-01-06 00:18:13 -05:00

29 lines
737 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Talc Web REPL</title>
<script type="module" src="main.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="terminal">
<div id="history">
<div>Talc Web REPL</div>
<div>For help, see
<a href="https://talc.trimill.xyz/" target="_blank">the docs</a>
or
<a href="https://g.trimill.xyz/trimill/talc" target="_blank">the repository</a>
</div>
</div>
<div class="input_line">
<div id="prompt" class="prompt">&gt;&gt;&nbsp;</div>
<div id="input" style="display: inline-block" contenteditable="true"></div>
</div>
</div>
</body>
</html>