-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (131 loc) · 6.96 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
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
<!DOCTYPE html>
<html>
<head>
<title>Sleety's Desktop</title>
<link rel="stylesheet" href="https://unpkg.com/xp.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="./img/icons/Internet Shortcut.png" type="image/x-icon">
</head>
<main id="main">
<div class="icon-container">
<img src="./img/icons/mycomputer.webp" alt="Website Icon" class="small-icon">
<p class="icon-label" style="color: aliceblue;text-align: center;">My Computer</p>
</a>
</div>
<div class="icon-container">
<img src="./img/icons/recycling_bin.png" alt="Website Icon" class="small-icon">
<p class="icon-label" style="color: aliceblue;text-align: center;">RecyclingBin</p>
</a>
</div>
<div class="icon-container" onclick="openWindow('aboutme')">
<img src="./img/icons/Floppy Disk.png" alt="Website Icon" class="small-icon">
<p class="icon-label">
<a href="_blank" target="_blank" style="color: aliceblue;text-align: center;">AboutMe.exe</a>
</p>
</div>
<div class="icon-container" onclick="openWindow('MS-DOS')">
<img src="./img/icons/Command Prompt.png" alt="Website Icon" class="small-icon">
<p class="icon-label">
<a href="_blank" target="_blank" style="color: aliceblue;text-align: center;">MS-DOS</a>
</p>
</div>
<div class="icon-container">
<a href="./devlogs.html" target="_blank">
<img src="./img/icons/users.webp" alt="Website Icon" class="small-icon">
<p class="icon-label" style="color: aliceblue;text-align: center;">MyDevlogs</p>
</a>
</div>
<div class="icon-container" onclick="openWindow('myprojects')">
<img src="./img/icons/folder.png" alt="Website Icon" class="small-icon">
<p class="icon-label">
<a target="_blank" style="color: aliceblue;text-align: center;">MyProjects</a>
</p>
</div>
<!--icon box start-->
<div class="icon-container">
<a href="https://itch.io/" target="_blank">
<img src="./img/icons/itch.png" alt="Website Icon" class="small-icon" href ="https://thesleety.itch.io">
<p class="icon-label" style="color: aliceblue;text-align: center;">Itch.io</p>
</a>
</div>
<!--icon box end-->
<div class="icon-container">
<a href="https://github.com" target="_blank">
<img src="./img/icons/github.webp" alt="Website Icon" class="small-icon" href ="https://github.com/The-Sleety">
<p class="icon-label" style="color: aliceblue;text-align: center;">Github</p>
</a>
</div>
<div class="icon-container" onclick="openWindow('Ie')">
<img src="./img/icons/IE6.png" alt="Website Icon" class="small-icon">
<p class="icon-label">
<a href="_blank" target="_blank" style="color: aliceblue;text-align: center;">Internet Explorer</a>
</p>
</div>
<div class="window" id="aboutme" style="display: none; width: 50%; height: 60%;">
<div class="title-bar">
<div class="title-bar-text">AboutMe.exe</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="closeWindow('aboutme')"></button>
</div>
</div>
<div class="window-body">
<img src="/img/pfp.png" alt="pfp" style="border-radius: 50%; display: block; margin-left: 38%; margin-top: 10px; width: auto;">
<a style="font-size:xx-large; margin-left: 40%; color: black;">About Me</a>
<p style="font-size: x-large; padding: 10px;">Hello and welcome to my website, thanks for visiting it. My name is Bora you can call me Sleety. I'm a self thought developer. i like making websites and games. I primarily use Godot Engine to make games and use Html, Css and Js to make website. I know html,css,js,c++, a little bit c, java and some more. if you want to reach me out you can text me from <a href="https://www.instagram.com/sleetydev/" style="color: #E1306C;">Instagram,</a> <a href="https://twitter.com/TheSleety" style="color: #1DA1F2;"> Twitter</a> or you can come tomy <a href="https://discord.gg/ZAhjZnCUbd" style="color: #5865F2;">Discord server</a>, bye.</p>
</div>
</div>
<div class="window" id="myprojects" style="display: none; width: 60%; height: 70%;">
<div class="title-bar">
<div class="title-bar-text">My Projects</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="closeWindow('myprojects')"></button>
</div>
</div>
<div class="window-body">
<p style="font-size: xx-large;">coming soon...</p>
</div>
</div>
<div class="window" id="Ie" style="display: none; width: 60%; height: 70%;">
<div class="title-bar">
<div class="title-bar-text">Internet Explorer.exe</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="closeWindow('Ie')"></button>
</div>
</div>
<div class="window-body">
<iframe src="https://www.google.com/webhp?igu=1" height=92%"></iframe>
</div>
</div>
<div class="window" id="MS-DOS" style="display: none; width: 60%; height: 70%;">
<div class="title-bar">
<div class="title-bar-text">MS-DOS.exe</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="closeWindow('MS-DOS')"></button>
</div>
</div>
<div class="window-body">
<iframe src="https://the-sleety.github.io/WebDOS/" height=92%"></iframe>
</div>
</div>
<!--start Menu-->
<!--<iframe src="https://www.google.com/webhp?igu=1"></iframe>-->
</main>
</div>
<div id="navbar">
<ul>
<li><a href="/index.html" style="margin-left: 10%; font-size: medium;">Desktop</a></li>
<li><a href="/devlogs.html" style="margin-left: 5%; font-size: medium;">Devlogs</a></li>
<li><a href="/anouncements.html" style="margin-left: 5%; font-size: medium;">Announcements</a></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>