-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscu.html
More file actions
139 lines (129 loc) · 4.77 KB
/
discu.html
File metadata and controls
139 lines (129 loc) · 4.77 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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="X-Frame-Options" content="DENY">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TIC-tac-TOE doc HSR Projects</title>
<style>
:root{
--bg:#050b14; --glass:rgba(255,255,255,0.03);
--cyan:#00e5ff; --pink:#ff6bb5; --muted:#9aa4b2; --card:rgba(255,255,255,0.02);
--radius:12px; --shadow:0 20px 50px rgba(0,0,0,0.6);
}
*{box-sizing:border-box}
html,body{
height:100%; margin:0;
font-family:Inter,system-ui,Segoe UI,Roboto;
background:linear-gradient(180deg,var(--bg),#071322);
color:#e7f7ff;
-webkit-font-smoothing:antialiased;
}
/* Header/Nav */
header{
position:fixed;
top:16px;
left:16px;
right:16px;
z-index:50;
}
.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
padding:10px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,0.04);
backdrop-filter:blur(6px);
max-width:1280px;
margin:0 auto;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{
width:36px;height:36px;border-radius:8px;
display:grid;place-items:center;
background:linear-gradient(135deg,var(--cyan),var(--pink));
color:#00131a;font-weight:900
}
/* Hyprland-style offline popup */
#offline-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.95);
padding: 28px 42px;
border-radius: 16px;
background: rgba(20,25,35,0.5);
backdrop-filter: blur(16px);
border: 1px solid rgba(0,229,255,0.35);
font-weight: 800;
font-size: 18px;
text-align: center;
box-shadow: 0 20px 50px rgba(0,229,255,0.2);
opacity: 0;
transition: opacity 0.4s ease, transform 0.4s ease;
z-index:100;
max-width: 400px;
line-height:1.5;
}
#offline-popup.show{
opacity:1;
transform: translate(-50%, -50%) scale(1);
}
/* Highlighted text (non-clickable links) */
.highlight {
background: rgba(0,229,255,0.15);
color: var(--cyan);
padding: 2px 4px;
border-radius: 4px;
font-weight: 700;
}
body {
height:100vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}
</style>
</head>
<body>
<header>
<div class="nav">
<div class="brand">
<div class="logo">HSR</div>
<div style="line-height:1">
<div style="font-weight:800">HSR Projects</div>
<div style="font-size:12px;color:var(--muted)">HSR-projects</div>
</div>
</div>
</div>
</header>
<!-- Hyprland-style popup -->
<h3>Date: November 14, 2025<br>
Organisation: HSR-projects<br>
Author: hemuk477 (Project Creator)<br><br>
It is with a mixture of nostalgia and excitement for future projects that I announce the official discontinuation and subsequent shutdown of the Tic-Tac-Toe game hosted at
<span class="highlight">www.hemugame1.w3spaces.com</span>.<br><br>
Since its launch, this simple game has been a wonderful learning experience for me as a developer and, I hope, a source of simple fun for its players. The project successfully served its purpose as a practical exercise in web development and hosting.<br><br>
<strong>Why the Change?</strong><br>
This decision comes after a thorough evaluation of personal project goals and a shift in focus toward new learning opportunities and technologies. The maintenance of this specific, small-scale site is no longer aligned with my current development path. The underlying platform may also have changing requirements which makes a transition necessary.<br><br>
<strong>What Happens Next?</strong><br>
The website <span class="highlight">hemugame1.w3spaces.com</span> will be deactivated and removed from hosting on or around November 14, 2025.<br><br>
I appreciate all the interactions and visits the site has received over its operational period.<br><br>
<strong>Looking Ahead</strong><br>
While this specific URL is closing down, the core experience of Tic-Tac-Toe remains universally available across countless other platforms. For those interested in seeing what I'm working on next, please stay tuned to our main portfolio or future project announcements.<br><br>
Thank you all for your support and understanding.<br><br>
Sincerely,<br>
HSR-projects<br>
Project Creator</h3>
<script>
// Fade-in popup on page load
window.onload = () => {
document.getElementById("offline-popup").classList.add("show");
};
</script>
</body>
</html>