cpython/Platforms/emscripten/web_example_pyrepl_jspi/index.html
Hood Chatham 1b118353bb
gh-145176 Move Emscripten files into Platforms/emscripten (#145806)
Moves Emscripten build files into Platforms/emscripten.
2026-03-17 09:39:45 +08:00

35 lines
895 B
HTML

<!doctype html>
<html>
<head>
<title>Emscripten PyRepl Example</title>
<link
rel="stylesheet"
href="https://unpkg.com/xterm@4.18.0/css/xterm.css"
/>
<style>
body {
background-color: #300a24;
}
.xterm-dom-renderer-owner-1 .xterm-fg-3 {
color: #c4a000 !important;
}
.xterm-dom-renderer-owner-1 .xterm-fg-6 {
color: #2aa1b3 !important;
}
.xterm-dom-renderer-owner-1 .xterm-fg-12 {
color: #1054a6 !important;
}
.xterm-dom-renderer-owner-1 .xterm-fg-13 {
color: #a347ba !important;
}
</style>
</head>
<body>
<div id="terminal"></div>
<script type="module" src="src.mjs"></script>
</body>
</html>