-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
28 lines (27 loc) · 882 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HomeTerm</title>
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@1,500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="dark">
<div id="terminal" onclick="focusPrompt()">
<div id="terminal-content"></div>
</div>
<a class="github-link" href="https://github.com/Jaredk3nt/HomeTerm">
Contribute on GitHub
</a>
<script src='src/constants.js'></script>
<script src="src/utils.js"></script>
<script src="src/localStorageUtils.js"></script>
<script src="src/writers.js"></script>
<script src="src/commands.js"></script>
<script src="src/cli.js"></script>
</body>
</html>