-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Y2K WebOS</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Tiny5&display=swap"
rel="stylesheet">
</head>
<body>
<div id="boot-screen">
Y2K WebOS v1.0
Booting up...
Doing stuff a 90s computer do idk...
Memory Test... OK
Made with ♡ by @themeowmews (Codédex)
Loading system files...
SYSTEM.DAT........OK
COMMAND.COM.......OK
Initializing GUI...
</div>
<div id="desktop"></div>
<div id="taskbar"></div>
<div id="modal" class="modal">
<div class="modal-content">
<span id="modal-close" class="modal-close">×</span>
<div id="modal-body"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>