-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (53 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
55 lines (53 loc) · 1.92 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>K12 Technology Training - We've Moved!</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<script>
// Auto-redirect after 10 seconds
let countdown = 10;
const countdownElement = document.getElementById('countdown');
function updateCountdown() {
if (countdown > 0) {
document.getElementById('countdown').textContent = countdown;
countdown--;
setTimeout(updateCountdown, 1000);
} else {
window.location.href = 'https://learnersoftomorrow.com';
}
}
window.onload = function() {
updateCountdown();
};
</script>
</head>
<body>
<div class="warning-content">
<div class="logo">
<img src="./logo.png" alt="K12 Technology Training Logo" />
</div>
<h1>We've Moved!</h1>
<div class="redirect-icon">
<svg width="120" height="120" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12L17 8M21 12L17 16M21 12H3" stroke="#CF5D70" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<p class="main-message">
Our K-12 Technology Training content has moved to a new home!
</p>
<div class="new-site-info">
<h2>Find us at:</h2>
<a href="https://learnersoftomorrow.com" class="new-site-link" target="_blank">
learnersoftomorrow.com
</a>
</div>
<p class="redirect-message">
You'll be automatically redirected in <span id="countdown">10</span> seconds, or click the link above to visit now.
</p>
<p class="signature">
Thank you for your patience! - <a href="https://www.garyinnerarity.com" target="_blank">Gary Innerarity</a>
</p>
</div>
</body>
</html>