-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (50 loc) · 2.5 KB
/
index.html
File metadata and controls
58 lines (50 loc) · 2.5 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/images/favicon.png">
<title>Connor Harris — Developer & Creator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="terminal">
<!-- Linux Boot Sequence -->
<div class="boot-sequence" id="bootSequence">
<!-- Boot messages will be dynamically inserted here -->
</div>
<!-- Terminal Welcome -->
<div class="welcome" style="display: none;">
<pre class="Ascii" id="asciiArt">
██╗ ██╗███████╗██╗ ██████╗ ██████╗ ███╗ ███╗███████╗
██║ ██║██╔════╝██║ ██╔════╝██╔═══██╗████╗ ████║██╔════╝
██║ █╗ ██║█████╗ ██║ ██║ ██║ ██║██╔████╔██║█████╗
██║███╗██║██╔══╝ ██║ ██║ ██║ ██║██║╚██╔╝██║██╔══╝
╚███╔███╔╝███████╗███████╗╚██████╗╚██████╔╝██║ ╚═╝ ██║███████╗
╚══╝╚══╝ ╚══════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ </pre>
<div id="welcomeText">
<span class="line">Welcome to TheDevConnor.com Terminal</span>
<span class="sub_line">
<br>Type 'help' to get a list of commands
<br>Type 'fetch' to get something cool
<br>Type 'effects' to see visual effects
</span>
</div>
</div>
<template id="prompt">
<div class="prompt">
<span class="timestamp"></span>
<span class="user">guest</span><span class="at">@</span><span class="website">TheDevConnor.com</span><span
class="colon">:$ ~ </span>
<span class="input-wrapper">
<input class="terminal-input" type="text" />
<span class="autocomplete"></span>
</span>
</div>
</template>
<canvas id="matrixCanvas"
style="display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:999;"></canvas>
</div>
<script src="script.js"></script>
</body>
</html>