-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (49 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My homepage</title>
<meta name="author" content="David LJz">
<!--
<meta property="og:title" content="A Basic HTML5 Template">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/">
<meta property="og:description" content="A simple HTML5 Template for new projects.">
<meta property="og:image" content="image.png">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> -->
<link rel="stylesheet" href="./css/style.css?v=0.4.9b">
</head>
<body>
<input id="bg-input" type="file" name="bg" style="display: none;" />
<div id="terminal">
<div class="terminal-header">
<div class="terminal-header-left">
<div class="terminal-header-left-title">
Terminal
</div>
</div>
<div class="terminal-header-right">
<button type="button" title="minimize" class="min terminal-header-button">−</button>
<button type="button" title="maximize" class="max terminal-header-button">o</button>
<button type="button" title="close" class="close terminal-header-button">x</button>
</div>
</div> <!-- end of terminal-header -->
<div class="terminal-body">
<div class="command-lines-container"></div>
<div class="input-container">
<span class="pager"></span>
<form>
<input type="text" class="cmd" placeholder="Enter command">
</form>
</div>
</div> <!-- end of terminal-body -->
</div>
<div id="launcher">
</div>
<!-- your content here... -->
<script type="module" src="./js/script.js?v=0.6.3b"></script>
</body>
</html>