-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1012 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
41
42
<html>
<body>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap" rel="stylesheet">
<style>
* {
font-family: monospace;
}
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
}
.console {
background-color:rgb(43, 16, 0);
padding: 10px;
width: 100%;
height: 100%;
}
.console p {
margin: 0;
color: rgb(194, 73, 3);
filter: drop-shadow(0 0 2px rgb(194, 73, 3));
}
</style>
</body>
<body>
<div class="console">
<p>
Poo
</p>
</div>
</body>
</html>