-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 872 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CruiseDevice</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/latest/normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/favicon.png">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="window">
<div class="window__bar">Akash Chavan</div>
<main id = "terminal">
<div id = "stdout">
</div>
<div id = "prompt">
<label for="stdin">~ </label>
<input id="stdin" type="text" autocomplete="off" inputmode="verbatim" placeholder="Type 'help' to list available commands" autofocus>
</div>
</main>
</div>
</body>
</html>