-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (135 loc) · 4.85 KB
/
index.html
File metadata and controls
156 lines (135 loc) · 4.85 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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yong Edison | Artist & Developer</title>
<meta property="og:title" content="Yong Edison - Official Linktree">
<meta property="og:description" content="Guitarist | Coding Enthusiast | Music Creator">
<meta property="og:image" content="https://yongedison.github.io/Proyek-koder/zull.jpg">
<style>
/* 1. ANIMASI BACKGROUND NEBULA */
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #2c003e);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
color: white;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow-x: hidden;
}
.container {
width: 90%;
max-width: 400px;
text-align: center;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.05); /* Efek Kaca */
backdrop-filter: blur(15px);
border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 45px rgba(0,0,0,0.5);
}
/* 2. FOTO PROFIL DENGAN EFEK PULSA */
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(241, 196, 15, 0); }
100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}
.foto {
width: 130px;
height: 130px;
border-radius: 50%;
border: 3px solid #f1c40f;
object-fit: cover;
margin-bottom: 20px;
animation: pulse 2s infinite;
}
h1 {
font-size: 1.8rem;
letter-spacing: 2px;
margin-bottom: 10px;
text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.sub-text {
font-size: 0.9rem;
color: #ecf0f1;
margin-bottom: 30px;
opacity: 0.8;
}
/* 3. TOMBOL GLASSMORPHISM DENGAN HOVER GLOW */
.tombol {
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
color: white;
text-decoration: none;
padding: 16px;
margin-bottom: 18px;
border-radius: 50px;
font-weight: 600;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tombol:hover {
background: #f1c40f;
color: #0f0c29;
transform: scale(1.05);
box-shadow: 0 0 25px rgba(241, 196, 15, 0.6);
}
.highlight {
background: linear-gradient(90deg, #f1c40f, #f39c12);
color: #0f0c29;
border: none;
}
.highlight:hover {
box-shadow: 0 0 30px rgba(243, 156, 18, 0.8);
}
/* Footer Sederhana */
footer {
margin-top: 20px;
font-size: 0.7rem;
opacity: 0.5;
}
</style>
</head>
<body>
<div class="container">
<img src="zull.jpg" class="foto" alt="Yong Edison">
<h1>YONG EDISON</h1>
<div class="sub-text">🎸 Guitarist • 💻 Dev • 🇮🇩 Indo</div>
<a href="https://www.tiktok.com/@tongkronganvibess" class="tombol highlight">NEW COVER ON TIKTOK ⚡</a>
<a href="https://www.instagram.com/yongedison_" class="tombol">Follow my Instagram 📸</a>
<a href="https://wa.me/6258624460706" class="tombol">Let's Talk on WhatsApp 📱</a>
<a href="https://github.com/yongedison" class="tombol">My Coding Portfolio (GitHub) 🚀</a>
<a href="https://yongedison.github.io/Cover-song-/" class="tombol highlight">🎸 My Favorite Playlist</a>
<footer>© 2026 High-Quality Digital Card | Built by Yong via Mobile</footer>
</div>
<script>
// Ini adalah kode JavaScript
const waktu = new Date().getHours();
let salam;
if (waktu < 11) {
salam = "Good morning, Sunshine! ☀️";
} else if (waktu < 15) {
salam = "Good afternoon! Hope you're having a great day! 🔥";
} else if (waktu < 19) {
salam = "Good evening! Time to chill... ☕";
} else {
salam = "Good night! Sweet dreams! 🌙";
}
// Mengganti teks di sub-text dengan salam otomatis
document.querySelector('.sub-text').innerHTML = salam;
</script>
</body>
</html>