-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.02 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.02 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
<!doctype html>
<html>
<head>
<title>Source-Dan</title>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="icon" type="image/x-icon" href="subpages/assets/favicon.jpg">
</head>
<body>
<div class="top-left-links">
<a href="subpages/dontask.html" class="top-left-link">Don't ask to ask</a>
<br>
<a href="subpages/vim.html" class="top-left-link">Vim</a>
</div>
<div class="terminal">
<div class="header">
<span class="username">user@localhost</span>
<span class="hostname">localhost</span>
<span class="cwd">~/</span>
</div>
<div class="output">
<pre id="output"></pre>
</div>
<div class="input">
<input id="input" type="text" placeholder="$" />
<button id="submit">Enter</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>