-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.06 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.06 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
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
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Web File Explorer</title>
<meta
name="description"
content="Very funny and creative description here frfr" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://unpkg.com/fixedsys-css/css/fixedsys.css" />
</head>
<body>
<div class="header">
<h1>WEB FILE EXPLORER THINGY</h1>
</div>
<div class="status-bar">
<div class="status-left">
Click active :
<span class="click-status-blinker"> INACTIVE</span> <br />
Enter active :
<span class="enter-status-blinker"> INACTIVE</span> <br />
pgup active :
<span class="up-status-blinker"> INACTIVE</span>
<br />
pgdn active :
<span class="down-status-blinker"> INACTIVE</span>
</div>
<div class="status-right">
<span id="pointer-coordinates">
Cursor position : (x, y)
</span>
<br />
<span id="pointer-index"
>Pointer index : 0</span
>
<br />
<span id="selected-file">Selected file : ..</span>
</div>
</div>
<br /><br />
<div class="file-explorer"></div>
<div class="credit">
Made by Vumacc |
<a
href="https://github.com/Vumacc/Web-File-Explorer"
class="github-link"
>source code</a
>
| Still highly in development, more bugs than a 1 star motel.
</div>
<script src="script.js" async defer></script>
</body>
</html>