-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 2.25 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
<!DOCTYPE html>
<!--
2024 All rights reserved - Riccardo Cariboni
-->
<html>
<head>
<title>RC</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="terminal">
<pre class="ascii-banner" id="term-banner">
<span class="line"> ███████████ █████████ █████████ </span>
<span class="line">░░███░░░░░███ ███░░░░░███ ███░░░░░███ </span>
<span class="line"> ░███ ░███ ███ ░░░ ░███ ░░░ </span>
<span class="line"> ░██████████ ░███ ░░█████████ </span>
<span class="line"> ░███░░░░░███ ░███ ░░░░░░░░███ </span>
<span class="line"> ░███ ░███ ░░███ ███ ███ ░███ </span>
<span class="line"> █████ █████ ██ ░░█████████ ██░░█████████ ██</span>
<span class="line">░░░░░ ░░░░░ ░░ ░░░░░░░░░ ░░ ░░░░░░░░░ ░░ </span>
<span class="line"> </span>
</pre>
</div>
<div class="term" id="term">
<div>Type "help" for a list of commands.</div>
<span><br></span>
<div class="term-line">
<span class="term-prompt"><b>$</b></span>
<input type="text" class="term-command-in" id="command-input" autofocus>
</div>
</div>
<footer>©2018-2025 Riccardo Cariboni - All rights reserved<br>Via Don Minzoni, 6/10 - 23801 Calolziocorte (LC)<br>P.IVA: 03772310136
</footer>
<script src="scripts/transform.js"></script>
<script src="scripts/console.js"></script>
</body>
</html>