-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 915 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terminal of dimen61's portfolio</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<canvas id="matrix-rain">
<p>Your browser does not support HTML5 canvas. Here should be the animation of code rain</p>
</canvas>
<div id="terminal">
<div id="output"></div>
<div id="input-line">
<div class="prompt" data-path="/">dimen61@portfolio:/$</div>
<input type="text" id="command-input" autocomplete="off" autofocus>
<div id="caret"></div>
</div>
</div>
<script src="js/matrixRain.js"></script>
<script src="js/main.js"></script>
<script src="js/commandHandler.js"></script>
</body>
</html>