-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (138 loc) · 5.78 KB
/
Copy pathindex.html
File metadata and controls
176 lines (138 loc) · 5.78 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<style>
@font-face {
font-family: myFont;
src: url("font.ttf");
}
html, body {
margin: 0;
padding: 0;
width: 100%;
min-height: 100vh;
background-image: url("./menu_background.png");
background-repeat: repeat;
background-size: 32px 32px;
image-rendering: pixelated;
font-family: myFont;
font-size: 18px;
color: white;
}
h1, h2, p, div {
text-align: center;
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div style="position: absolute; width: 100%; display: flex;border-radius: 32px; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.25); justify-content: space-between;color:grey;">
<p style="margin-left: 20px;">
MinecraftOS v.2.0
</p>
<p id="timeElement" style="margin-right: 20px;">
9/7/2026 6:40 PM
</p>
</div>
<div id="welcome">
<h1 style="color: grey; position: absolute; top: 20%; right: 31%;">Welcome to MinecraftOS v.2.0!</h1>
<p id="welcomeheader" style="color: grey; position: absolute; top: 30%; right: 41%;">
It describes my personality!
</p>
</div>
<div style="position: absolute; top: 10%; left: 30%;">
<img src="./Hotbar.png" width="600" height="70" />
<img class="hotbar_item" style="top: 0px; right: 525px; width: 80px;" id="hobbyopen" src="./controller.png" />
<img class="hotbar_item" style="top: 2px; right: 465px; width: 65px;" id="serveropen" src="./command block.jpg" />
<img class="hotbar_item" style="top: 2px; right: 400px; width: 65px;" id="playlistsopen" src="./music.png" />
<img class="hotbar_item" style="top: -10px; right: 302px; width: 130px;" id="notesopen" src="./notes.png" />
<img class="hotbar_item" style="top: -6px; right: -8px; width: 87px;" id="infoopen" src="./info.png" />
<img class="hotbar_item" style="top: 9px; left: 275px; width: 50px" id="eaglercraftopen" src="./eaglercraft.png" />
</div>
<div class="window" id="hobbies" style="top:40%; left:60%">
<div class="header" id="hobbiesheader">
<h3 class="header_text">Hobbies</h3>
<img class="close_button" id="hobbyclose" src="./close button.png" />
<img class="maximise_button" id="hobbymaximise" src="./maximise.png" />
</div>
<div class="content" id="hobbycontent">
<p>> Coding ofc :3</p>
<p>> Reading (dark romance ifykyk)</p>
<p>> Badminton (staying fit is necessary :P)</p>
<p>> Minecraft (gotta love the hustle :O)</p>
</div>
</div>
<div class="window" id="playlists" style="height:150px; top:80%; right:60%;">
<div class="header" id="playlistsheader">
<h3 class="header_text">Playlists</h3>
<img class="close_button" id="playlistsclose" src="./close button.png" />
<img class="maximise_button" id="playlistmaximise" src="./maximise.png" />
</div>
<div class="content" id="playlistcontent">
<a href="https://youtube.com/playlist?list=PLT7Ol2AKWklCHK6BbOhhik7yre0k9Wv-M&si=TyrV-E7RGk2WcLam">
> my phonk playlist
</a>
<br><br>
<a href="https://www.youtube.com/playlist?list=PLT7Ol2AKWklDM96JOvUnGxAwjQfPcoVIT">
> gimme your recommendations!!
</a>
</div>
</div>
<div class="window" id="server" style="top:40%; right:60%;">
<div class="header" id="serverheader">
<h3 class="header_text">My fav MC servers</h3>
<img class="close_button" id="serverclose" src="./close button.png" />
<img class="maximise_button" id="servermaximise" src="./maximise.png" />
</div>
<div class="content" id="servercontent">
<p>> Cubecraft</p>
<p>> Galaxite</p>
<p>> MinevilleZeqa</p>
<p>> HC SMP</p>
</div>
</div>
<div class="window" id="notes" style="top:80%; left: 60%; width: 500px; height: 500px;">
<div class="header" id="notesheader">
<h3 class="header_text">Journel</h3>
<img class="close_button" id="notesclose" src="./close button.png" />
<img class="maximise_button" id="notesmaximise" src="./maximise.png" />
</div>
<div class="notes-container">
<div id="sidebar" style="background-color: #918f8d;"></div>
<div id="notescontent" contenteditable="true"
style="background-color: #898989;">
</div>
</div>
</div>
<div class="window" id="info" style="bottom: -55%; right: 60%; height: 300px; width: 500px;">
<div class="header" id="infoheader">
<h3 class="header_text">Who made me?</h3>
<img class="close_button" id="infoclose" src="./close button.png" />
<img class="maximise_button" id="infomaximise" src="./maximise.png" />
</div>
<div class="content" id="infocontent">
<img style="position: absolute; top: 20%; right: 65%; height: 200px; width: 160px; border-radius: 50%;" src="./pfp.png" />
<h3 style="position: absolute; top: 20%; left: 40%;">rapid_speed</h3>
<p style="position: absolute; top: 32%; left: 38%;">You should definitely follow the guy on </p>
<a style="position: absolute; top: 53%; left: 40%;" href="https://stardance.hackclub.com/@rapidSpeed">> stardance</a>
<a style="position: absolute; top: 60%; left: 40%;" href="https://hackclub.enterprise.slack.com/team/U0BF0SMUBCK">> slack</a>
</div>
</div>
<div class="window" id="eaglercraft" style="width: 960px; height: 540px;">
<div class="header" id="eaglercraftheader">
<h3 class="header_text">EaglercraftX 1.8.8</h3>
<img class="close_button" id="eaglercraftclose" src="./close button.png" />
<img class="maximise_button" id="eaglercraftmaximise" src="./maximise.png" />
</div>
<div class="content" id="eaglercraftcontent"></div>
</div>
<script src="script.js"></script>
</body>
</html>