-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtechtitans.html
More file actions
82 lines (73 loc) · 1.94 KB
/
techtitans.html
File metadata and controls
82 lines (73 loc) · 1.94 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Page Under Construction</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap" rel="stylesheet">
<style>
body {
background-color: #2f2f2f;
color: #ff4a4a;
font-family: 'Orbitron', sans-serif;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
flex-direction: column;
text-align: center;
overflow: hidden;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
animation: pulse 1.8s infinite;
}
p {
color: #ccc;
font-size: 1.2rem;
margin-top: 0;
animation: fadeIn 2s ease forwards;
}
.gear {
font-size: 4rem;
animation: spin 2.5s linear infinite;
margin-top: 30px;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.7; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.back-link {
margin-top: 40px;
display: inline-block;
color: #ff4a4a;
border: 2px solid #ff4a4a;
padding: 10px 20px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s;
}
.back-link:hover {
background-color: #ff4a4a;
color: black;
}
</style>
</head>
<body>
<h1>🚧 This Page is Under Construction 🚧</h1>
<p>We're working hard to bring you something awesome.<br>Please check back soon!</p>
<div class="gear">⚙️</div>
<a href="index.html" class="back-link">← Back to Home</a>
</body>
</html>