-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 855 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 855 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/jquery.terminal.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/jquery.terminal/css/jquery.terminal.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/animation.js"></script>
<style>
/* .cmd,
.cmd span:not(.fas):not(.far):not(.fa),
.terminal,
.terminal-output > :not(.raw),
.terminal-output > :not(.raw) a,
.terminal-output > :not(.raw) span:not(.fas):not(.far):not(.fa) {
font-family: Consolas;
} */
.terminal {
--font: Consolas;
}
</style>
</head>
<body>
<script type="module" src="./js/main.js"></script>
</body>
</html>