-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 881 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trace Interbeing</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#terminal {
font-size: 14px;
font-family: monospace;
color: rgb(133, 255, 137);
background-color: rgb(0, 26, 0);
width: 100vw;
height: 100dvh;
overflow: auto;
padding: 20px;
}
#terminal .txt {
width: 80%;
}
</style>
</head>
<body>
<div id="terminal">
<div class="txt">[call trans opt. received... tracing]</div>
<div class="txt">[click or type to trace]</div>
</div>
<script src="bundle.js"></script>
</body>
</html>