-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (47 loc) · 1.82 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
56
57
58
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="./main.css">
<title>The Unearned Wisdom Club</title>
</head>
<body>
<header>
<title>TheUnearnedWisdom.Club</title>
<!--38mmh7ddTpS2fxHWj8jsvEvxJW18fnky2z-->
</header>
<div id="icons">
<a href="bin.html"><img src="./icons/bin.png" id="bin"></a>
<p>Recycle Bin</p>
<a href="./art/art.html"><img src="./icons/icon-art.png" id="art"></a>
<p>Art</p>
<a href="projects.html"><img src="./icons/icon-folder.png" id="folder"></a>
<p>Projects</p>
<a href="./projects.html"><img src="./icons/icon-window.png" id="window"></a>
<p>More</p>
<a href="notepad.html"><img src="./icons/notepad.png" id="notepad"></a>
<p>Notepad</p>
</div>
<div id="welcome">
<img src="./icons/welcome.png"> <!--- add overflow later--->
<p>Welcome.</p>
<h1>Check out some of my projects: 38mmh7ddTpS2fxHWj8jsvEvxJW18fnky2z</h1>
<h1 id="message2">Also, try out the art gallery.<p class="blinking">|</p></h1>
</div>
<div id="project_window"><!-- This is where the projects folders are going to go! -->
<img src="./icons/projectwindow.png" id="window">
<!--Hand-wiring_Apple_M01100-->
<a href="./projects/m0110/m0110.html"><img src="./icons/icon-folder.png" class="m0110"></a>
<p class="m0110p">Apple_M0110</p>
<!--Media+Backup_Server-->
<a href="./projects/mediabackup_server/mediabackup_server.html"><img src="./icons/icon-folder.png" class="bmserver"></a>
<p class="bmserverp">Backup+Media_Server</p>
</div>
<footer>
<a href="index.html"><img src="./icons/start.png" id="start"></a>
<img src="./icons/window.png" id="windows">
<p><span id="datetime"></span></p>
<script>
var dt = new Date();
document.getElementById("datetime").innerHTML = dt.toLocaleTimeString();
</script>
</footer>
</body>