-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="terminal.js" defer></script>
</head>
<body>
<div class="terminal-icon hidden"></div>
<div class="terminal-window">
<header>
<div class="button red"></div>
<div class="button yellow"></div>
<div class="button green"></div>
</header>
<div id="terminal">
<p><span class="purple">[ツ]</span> - Welcome to my personal CLI. Type help to get started.</p>
<p class="hidden">
<span class="prompt">
<span id="currentPath" class="root">root/</span> <!-- Updated here -->
<span class="tick">></span>
</span>
<span contenteditable="true" class="input" spellcheck="false"></span>
</p>
</div>
</div>
<div class="footer hidefooter">
<p>Turning Java ☕ into JavaScript 💻</p>
<p>With 🤍 from Germany</p>
<p>Vivek Mannava</p>
</div>
</body>
</html>