mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 05:50:01 -04:00
35 lines
490 B
HTML
35 lines
490 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>epoxy</title>
|
|
<style>
|
|
body {
|
|
font-family: monospace;
|
|
font-weight: bold;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0
|
|
}
|
|
|
|
body>div {
|
|
padding: 1em;
|
|
}
|
|
|
|
#logs>* {
|
|
margin: 0;
|
|
font-weight: normal;
|
|
}
|
|
</style>
|
|
<script src="demo.js" type="module"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<div>running... (note: WASM is significantly slower when DevTools is open)</div>
|
|
<div>logs:</div>
|
|
<div id="logs"></div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|