-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.68 KB
/
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
43
44
45
46
<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>ideawolf Terminal</title>
<link rel="icon" href="./img/favicon.ico" type="image/x-icon" />
<link href="./css/main.css" rel="stylesheet" type="text/css" />
<script src="./js/polyfills.js"></script>
<script src="./js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-141698904-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-141698904-1');
</script>
<!-- Global site tag (gtag.js) END -->
</head>
<body>
<div id="sidenav">
<button id="sidenavBtn">☰</button>
<img id="profilePic" alt="An avatar that aims to represent the website owner" width="150px" height="150px"
src="https://avatars2.githubusercontent.com/u/45937750?s=460&v=4">
</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>
<!--<a id="githubImg" target="_blank" href="https://github.com/luisbraganca/fake-terminal-website/">
<img alt="Fork me on GitHub" src="./img/github_ribbon.png"> </a>-->
</body>
</html>