forked from luisbraganca/fake-terminal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1 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
<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>Alvaro's Website</title>
<link rel="icon" href="./img/favicon.png" type="image/x-icon" />
<link href="./css/main.css" rel="stylesheet" type="text/css" />
<script src="./scripts/polyfills.js"></script>
<script src="./scripts/main.js"></script> </head>
<body>
<div id="sidenav">
<button id="sidenavBtn">☰</button>
<img id="profilePic" alt="Alvaro's Avatar" src="./img/avatar.png">
</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>
</body>
</html>