-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (111 loc) · 3.19 KB
/
index.html
File metadata and controls
124 lines (111 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeLab - Crafting Tomorrow’s Tech</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: black;
color: #00FF00;
overflow-x: hidden;
text-align: center;
}
h1 {
font-size: 4em;
text-transform: uppercase;
margin-top: 20px;
animation: glitch 1.5s infinite;
}
p {
font-size: 1.5em;
margin-top: 10px;
color: #32CD32;
}
.logo {
margin-top: 20px;
max-width: 250px;
width: 100%;
height: auto;
border: 2px solid #00FF00;
border-radius: 10px;
}
.bottom-img {
margin-top: 50px;
max-width: 100%;
height: auto;
border: 2px solid #00FF00;
border-radius: 10px;
}
@keyframes glitch {
0% {
text-shadow: 1px 0 red, -1px 0 cyan, 1px 0 yellow;
transform: translate(0);
}
10% {
text-shadow: -1px 0 red, 1px 0 cyan, -1px 0 yellow;
transform: translate(-5px);
}
20% {
text-shadow: 1px 0 red, -1px 0 cyan, 1px 0 yellow;
transform: translate(5px);
}
30% {
text-shadow: -1px 0 red, 1px 0 cyan, -1px 0 yellow;
transform: translate(-5px);
}
40% {
text-shadow: 1px 0 red, -1px 0 cyan, 1px 0 yellow;
transform: translate(5px);
}
50% {
text-shadow: -1px 0 red, 1px 0 cyan, -1px 0 yellow;
transform: translate(0);
}
100% {
text-shadow: 1px 0 red, -1px 0 cyan, 1px 0 yellow;
transform: translate(0);
}
}
.container {
margin-top: 50px;
}
/* Responsive Styles */
@media (max-width: 768px) {
h1 {
font-size: 3em;
}
p {
font-size: 1.2em;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2.5em;
}
p {
font-size: 1em;
}
.logo {
max-width: 150px;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Top Logo -->
<img src="https://raw.githubusercontent.com/MahmudRafi/CodeLab/refs/heads/main/logo.png" alt="CodeLab Logo" class="logo">
<h1>CodeLab</h1>
<p>CodeLab – Learn Cutting-Edge Tech Skills for a Digital Future! </p>
<!-- Bottom Image -->
<img src="https://raw.githubusercontent.com/MahmudRafi/CodeLab/refs/heads/main/dark.jpg" alt="Dark Theme" class="bottom-img">
</div>
</body>
</html>