-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1011 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
27
28
29
30
31
32
33
34
35
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="screensaver"></div>
<div class="command-promt">
<div id="tag"></div>
<div class="container">
<div id="pre-container"></div>
<div id="input-container">
<div class="prompt">> $</div>
<div class="input-wrapper">
<input
class="input"
id="input"
autofocus
spellcheck="false"
autocomplete="off"
autocapitalize="none"
/>
<div class="caret"></div>
</div>
</div>
<div class="suggestions-container"></div>
</div>
</div>
<script src="scripts/api.js"></script>
<script src="scripts/camera.js"></script>
<script src="scripts/autofill.js"></script>
<script src="scripts/functions.js"></script>
<script src="scripts/modular.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>