-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.22 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
<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>Terminal</title>
<link rel="icon" href="./img/favicon.png" 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>
</head>
<body>
<div id="sidenav">
<button id="sidenavBtn">☰</button>
<img id="profilePic" alt="An avatar that aims to represent the website owner" src="./img/avatar.png" style="display: none;">
</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/" style="display: none;">
<img alt="Fork me on GitHub" src="./img/github_ribbon.png">
</a>
</body>
</html>