-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.91 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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<title>TrojanMorse - Terminal</title>
<link
rel="stylesheet"
type="text/css"
href="./css/styles.css"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="./css/styles-reponsive.css"
media="screen"
/>
</head>
<body>
<div id="terminal">
<div class="terminal-heading__wrapper">
<!-- <div id="controls" class="middle"><span></span><span></span><span></span><div class="taille"></div></div> -->
<div class="terminal-heading">Terminal</div>
</div>
<div id="terminal-content">
Personal website of Torean Joel - Welcome. Type 'help' or 'ls' and
press 'enter' to get started and get a list of commands available to you.
<br /><br />
<!-- <span class="advert">Notice:</span> See my blog <a href="https://crud.sh/" target="_blank">crud.sh</a> - protoyping ideas of interest -->
<div class="content-history"></div>
<div class="terminal-content__user-interaction">
<form id="terminal-content__form">
<div class="terminal-content__info"></div>
<input
type="text"
onblur="this.focus()"
autofocus
class="terminal--input"
autofocus
/>
</form>
</div>
</div>
</div>
</body>
<script src="./js/string_constants.js"></script>
<script src="./js/obj_constants.js"></script>
<!-- <script src="./js/templates.js"></script> -->
<script src="./js/helpers.js"></script>
<script src="./js/commands.js"></script>
<script src="./js/main.js"></script>
</html>