-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathContact_Us.html
More file actions
431 lines (375 loc) · 14.1 KB
/
Contact_Us.html
File metadata and controls
431 lines (375 loc) · 14.1 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<!DOCTYPE html> <!-- Declares we're using HTML 5 [we're not strictly because we're using the "center," which is HTML 4]-->
<html lang='en'>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>236 Technoticks</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f4f8;
}
.gradient-bg {
background: linear-gradient(135deg, #8ca7fa 0%, #5a7df5 100%);
}
.nav-btn {
transition: all 0.3s ease;
}
.nav-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.footer-icon {
transition: all 0.3s ease;
}
.footer-icon:hover {
transform: scale(1.1);
}
.robot-slideshow {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
border-radius: 0.5rem;
padding: 40px;
margin-left: 100px;
margin-right: 100px;
}
.header-banner {
max-height: 180px;
object-fit: contain;
border-radius: 24px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}
.header-banner:hover {
transform: scale(1.02);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.disney-border {
position: relative;
overflow: hidden;
}
.disney-border::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 4px solid rgba(255, 255, 255, 0.3);
border-radius: 24px;
pointer-events: none;
}
/* DeepSite disclaimer styles */
.deepsite-badge {
background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
border-radius: 9999px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 8px 16px;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.deepsite-badge:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.deepsite-logo {
width: 20px;
height: 20px;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<!-- Header Section with Banner -->
<header class="gradient-bg text-white py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center">
<a href="https://team236.github.io/" target="_blank">
<img src="brighter banner.jpg" alt="236 Technoticks Banner"
class="header-banner disney-border hover:border-white">
</a>
<p class="text-sm md:text-base bg-white text-blue-700 px-3 py-1 rounded-full font-medium mt-3">
Website under active development
</p>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="container mx-auto px-4 mt-8">
<div class="flex flex-wrap justify-center gap-3 md:gap-4">
<a href="https://team236.github.io/"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-home mr-2"></i>Home
</a>
<a href="https://team236.github.io/about_us.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-users mr-2"></i>About Us
</a>
<a href="https://team236.github.io/New_members.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-user-plus mr-2"></i>New Members
</a>
<a href="https://team236.github.io/Contact_Us.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-envelope mr-2"></i>Contact Us
</a>
<a href="https://team236.github.io/Robot_archive.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-robot mr-2"></i>Robot Archive
</a>
<a href="https://team236.github.io/Links.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-link mr-2"></i>Links
</a>
<a href="https://team236.github.io/bash.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-beach mr-2"></i>𓆉 Bash@theBeach
</a>
</div>
</nav>
<!-- Main Content -->
<center>
<br>
</center>
<main class="container mx-auto px-4 my-10">
<div class="robot-slideshow overflow-hidden">
</section>
<center>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSf8mHi6pIr0n8ZZjGjEb7LjOnPSEgV90uz1cSSBqT1an-TNjQ/viewform?embedded=true" width="640" height="450" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center">
<!-- Social Media Icons -->
<div class="flex space-x-4 mb-6">
<a href="https://www.facebook.com/FIRSTTeam236/" class="footer-icon bg-blue-600 hover:bg-blue-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="https://x.com/technoticks236" class="footer-icon bg-blue-400 hover:bg-blue-500 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="https://www.youtube.com/@thetechnoticks" class="footer-icon bg-red-600 hover:bg-red-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-youtube text-xl"></i>
</a>
<a href="https://www.instagram.com/236technoticks/" class="footer-icon bg-pink-600 hover:bg-pink-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="https://www.pinterest.com/team236/6" class="footer-icon bg-red-500 hover:bg-red-600 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-pinterest text-xl"></i>
</a>
</div>
<p class="text-sm mb-2">Copyright © 2024-2025 Team 236 - TechnoTicks</p>
<a href="https://github.com/Team236/team236.github.io" target="_blank" class="text-blue-300 hover:text-blue-100 text-sm mb-4">
<i class="fab fa-github mr-1"></i> GitHub Repository
</a>
<!-- DeepSite Badge in Footer -->
<a href="#" class="deepsite-badge pulse">
<img src="https://huggingface.co/spaces/enzostvs/deepsite/resolve/main/public/logo.svg" alt="DeepSite Logo" class="deepsite-logo">
<span>Made partially with DeepSite</span>
</a>
</div>
</div>
</footer>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* ---------------- DeepSite Badge ---------------- */
.deepsite-badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 0.9rem;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 12px;
font-size: 0.9rem;
color: #fff;
text-decoration: none;
position: relative;
overflow: hidden;
transition: background 0.3s ease, transform 0.2s ease;
}
.deepsite-badge:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.03);
}
.deepsite-logo {
width: 20px;
height: 20px;
}
.deepsite-badge.pulse {
animation: badgePulse 2.5s infinite;
}
@keyframes badgePulse {
0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
body {
font-family: 'Roboto', sans-serif;
margin: 0;
min-height: 100vh;
transition: background 0.8s ease, color 0.6s ease;
}
.header-banner {
max-height: 180px;
object-fit: contain;
border-radius: 24px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}
/* ---------------- EASY READ THEME ---------------- */
body.theme-easyRead {
background: linear-gradient(180deg, #8ca7fa 0%, #e6eef9 50%, #f0f4f8 100%);
color: #222;
}
body.theme-easyRead header.gradient-bg {
background: linear-gradient(135deg, #8ca7fa 0%, #5a7df5 100%);
color: #fff;
backdrop-filter: none;
}
body.theme-easyRead nav,
body.theme-easyRead footer,
body.theme-easyRead .robot-slideshow {
background: #fff;
color: #111;
backdrop-filter: none;
border-radius: 0.5rem;
}
/* ---------------- COOL LOOK THEME ---------------- */
body.theme-coolLook {
background: #0a0a1a;
background-image:
radial-gradient(circle at 20% 30%, rgba(128, 0, 255, 0.38), transparent 50%),
radial-gradient(circle at 80% 20%, rgba(0, 0, 255, 0.32), transparent 50%),
radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.22), transparent 50%),
radial-gradient(circle at 30% 70%, rgba(0, 0, 128, 0.28), transparent 50%);
background-blend-mode: screen;
background-attachment: fixed;
color: #fff;
animation: fadeInBg 2s ease forwards, moveBlobs 60s ease-in-out infinite alternate;
}
body.theme-coolLook header.gradient-bg {
background: rgba(20, 20, 60, 0.85);
backdrop-filter: blur(6px);
color: #fff;
}
body.theme-coolLook nav {
background: rgba(10, 10, 20, 0.55);
border-radius: 12px;
padding: 1rem;
margin-top: 2rem;
backdrop-filter: blur(6px);
}
body.theme-coolLook .robot-slideshow {
background: rgba(15, 15, 30, 0.75);
backdrop-filter: blur(4px);
padding: 1rem;
border-radius: 0.75rem;
}
body.theme-coolLook footer {
background: rgba(20, 20, 40, 0.85);
backdrop-filter: blur(8px);
}
.gradient-bg {
background: linear-gradient(135deg, #8ca7fa 0%, #5a7df5 100%);
}
@keyframes fadeInBg {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes moveBlobs {
0% { background-position: 20% 30%, 80% 20%, 70% 80%, 30% 70%; }
50% { background-position: 22% 32%, 78% 22%, 68% 78%, 32% 68%; }
100% { background-position: 20% 30%, 80% 20%, 70% 80%, 30% 70%; }
}
/* ---------------- Toggle button ---------------- */
.theme-toggle {
position: fixed;
top: 1rem;
right: 1rem;
padding: 0.5rem 0.9rem;
border: none;
border-radius: 8px;
cursor: pointer;
background: rgba(0,0,0,0.6);
color: #fff;
z-index: 999;
font-weight: 700;
backdrop-filter: blur(4px);
}
@media (max-width: 480px) {
.theme-toggle { top: 0.6rem; right: 0.6rem; padding: 0.45rem 0.7rem; font-size: 0.9rem; }
}
</style>
</head>
<!-- Scripts -->
<script>
(function(){
const body = document.body;
const btn = document.querySelector('.theme-toggle');
// default to coolLook
body.classList.add('theme-coolLook');
function setLabel() {
const isCool = body.classList.contains('theme-coolLook');
btn.textContent = isCool ? 'Switch to EasyRead' : 'Switch to CoolLook';
btn.setAttribute('aria-pressed', isCool ? 'true' : 'false');
}
btn.addEventListener('click', function() {
body.classList.toggle('theme-coolLook');
body.classList.toggle('theme-easyRead');
setLabel();
});
setLabel();
})();
// Banner click animation
document.querySelector('.header-banner').addEventListener('click', function() {
this.style.transform = 'scale(0.98)';
setTimeout(() => { this.style.transform = 'scale(1.02)'; }, 100);
setTimeout(() => { this.style.transform = 'scale(1)'; }, 200);
});
// DeepSite ripple
document.querySelector('.deepsite-badge').addEventListener('click', function(e) {
e.preventDefault();
const ripple = document.createElement('span');
ripple.className = 'absolute bg-white opacity-30 rounded-full';
ripple.style.width = '10px';
ripple.style.height = '10px';
ripple.style.left = (e.clientX - e.target.getBoundingClientRect().left - 5) + 'px';
ripple.style.top = (e.clientY - e.target.getBoundingClientRect().top - 5) + 'px';
ripple.style.transform = 'scale(0)';
ripple.style.transition = 'transform 0.6s ease, opacity 0.6s ease';
this.appendChild(ripple);
setTimeout(() => {
ripple.style.transform = 'scale(40)';
ripple.style.opacity = '0';
}, 10);
setTimeout(() => { ripple.remove(); }, 600);
});
</script>
</body>
</html>
</body>
</html>