-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>root@example.com</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="terminal">
<div class="terminal-header">
<h2>ascii<br>
art<br>
goes<br>
here<br>
-----<br></h2>
</div>
<div class="terminal-body" id="terminalBody">
<p>root@example.com:$ echo "\n\nwelcome to my site!\n\n github\n email\n notes\n"</p>
<br><p>welcome to my site!</p><br><br>
<em><a href="https://github.com/" style="color: #56f0fe; text-decoration: none;">github<br></a></em>
<em><a href="mailto:example@example.com" style="color: #56f0fe; text-decoration: none;">email</a></em><br>
<em><a href="https://notes.example.com" style="color: #56f0fe; text-decoration: none;">notes</a></em>
<br><p>root@example.com:$ echo "\n\nrev 2024"</p>
<br><p>rev 2024</p>
</div>
<div class="input-line">
<div class="prompt">root@example.com:$ </div>
<input type="text" class="input-field" id="userInput" placeholder="..." style="font-family: 'Courier New', monospace; font-size: small;">
</div>
</div>
</body>
</html>