-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.25 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hello I'm bubu07</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow: hidden;
}
h1 {
font-size: 5rem;
color: #fff;
text-shadow: 0 0 20px #00ffe1, 0 0 40px #00bcd4, 0 0 60px #00ffe1;
animation: spin 10s linear infinite, pulse 2s ease-in-out infinite;
transform-style: preserve-3d;
perspective: 1000px;
}
@keyframes spin {
0% { transform: rotateY(0deg) rotateX(0deg); }
50% { transform: rotateY(180deg) rotateX(360deg); }
100% { transform: rotateY(360deg) rotateX(720deg); }
}
@keyframes pulse {
0%, 100% { text-shadow: 0 0 10px #00ffe1; }
50% { text-shadow: 0 0 30px #00bcd4, 0 0 60px #00ffe1; }
}
</style>
</head>
<body>
<h1>Hello, I'm bubu07</h1>
</body>
</html>