-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
378 lines (336 loc) ยท 13.1 KB
/
Copy pathIndex.html
File metadata and controls
378 lines (336 loc) ยท 13.1 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hayu Kurniawan - Junior Developer Portfolio</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
text-align: center;
padding: 80px 0;
color: white;
animation: fadeInUp 1s ease-out;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
}
.cta-button {
display: inline-block;
background: rgba(255,255,255,0.2);
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 50px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.cta-button:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.content {
background: white;
border-radius: 20px;
padding: 40px;
margin: 40px 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
animation: fadeInUp 1s ease-out 0.2s both;
}
.section {
margin-bottom: 40px;
}
.section h2 {
color: #667eea;
margin-bottom: 20px;
font-size: 2rem;
border-bottom: 3px solid #667eea;
padding-bottom: 10px;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.skill-card {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 20px;
border-radius: 15px;
text-align: center;
transition: transform 0.3s ease;
}
.skill-card:hover {
transform: translateY(-5px);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 20px;
}
.project-card {
background: #f8f9fa;
border-radius: 15px;
padding: 25px;
border-left: 5px solid #667eea;
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.project-card h3 {
color: #667eea;
margin-bottom: 10px;
}
.learning-path {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
color: white;
padding: 30px;
border-radius: 15px;
margin: 20px 0;
}
.learning-item {
display: flex;
align-items: center;
margin: 15px 0;
padding: 10px;
background: rgba(255,255,255,0.1);
border-radius: 10px;
}
.learning-item::before {
content: "โ";
background: rgba(255,255,255,0.3);
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-weight: bold;
}
.contact {
text-align: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
border-radius: 15px;
margin-top: 30px;
}
.contact-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
flex-wrap: wrap;
}
.contact-link {
background: rgba(255,255,255,0.2);
color: white;
padding: 12px 25px;
text-decoration: none;
border-radius: 25px;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.contact-link:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.motivation-badge {
background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
color: #333;
padding: 15px 25px;
border-radius: 50px;
display: inline-block;
margin: 10px;
font-weight: bold;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.contact-links {
flex-direction: column;
align-items: center;
}
.skills-grid,
.projects-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<div class="hero">
<h1>Hayu Kurniawan</h1>
<p>Calon Junior Developer dengan Semangat Belajar Tinggi</p>
<a href="#projects" class="cta-button">Lihat Portfolio Saya</a>
</div>
<div class="content">
<div class="section">
<h2>Tentang Saya</h2>
<p>Saya adalah seseorang yang memiliki passion besar dalam dunia teknologi dan programming. Meskipun saya masih dalam tahap pembelajaran, saya memiliki dedikasi tinggi untuk terus mengembangkan kemampuan coding saya. Saya percaya bahwa dengan kerja keras dan konsistensi, saya dapat berkontribusi maksimal untuk tim development perusahaan Anda.</p>
<div class="motivation-badge">๐ Fast Learner</div>
<div class="motivation-badge">๐ช Problem Solver</div>
<div class="motivation-badge">๐ฏ Goal Oriented</div>
</div>
<div class="section">
<h2>Skills yang Sedang Dikuasai</h2>
<div class="skills-grid">
<div class="skill-card">
<h3>HTML & CSS</h3>
<p>Dasar-dasar pembuatan website dan styling</p>
</div>
<div class="skill-card">
<h3>JavaScript</h3>
<p>Logika programming dan interaktivitas</p>
</div>
<div class="skill-card">
<h3>Git & Version Control</h3>
<p>Manajemen kode dan kolaborasi</p>
</div>
<div class="skill-card">
<h3>Problem Solving</h3>
<p>Analytical thinking dan debugging</p>
</div>
</div>
</div>
<div class="section" id="projects">
<h2>Project Pembelajaran</h2>
<div class="projects-grid">
<div class="project-card">
<h3>๐ Personal Website</h3>
<p>Website portfolio sederhana menggunakan HTML, CSS, dan JavaScript. Menampilkan kemampuan dasar dalam web development dan responsive design.</p>
<p><strong>Tech Stack:</strong> HTML5, CSS3, JavaScript</p>
</div>
<div class="project-card">
<h3>๐ฑ To-Do List App</h3>
<p>Aplikasi sederhana untuk manajemen tugas harian. Implementasi CRUD operations dan local storage.</p>
<p><strong>Tech Stack:</strong> JavaScript, HTML, CSS</p>
</div>
<div class="project-card">
<h3>๐งฎ Kalkulator</h3>
<p>Kalkulator dengan operasi matematika dasar. Fokus pada logika programming dan event handling.</p>
<p><strong>Tech Stack:</strong> JavaScript, HTML, CSS</p>
</div>
</div>
</div>
<div class="section">
<h2>Rencana Pembelajaran</h2>
<div class="learning-path">
<h3>Roadmap Development Saya:</h3>
<div class="learning-item">Menguasai JavaScript ES6+ dan DOM manipulation</div>
<div class="learning-item">Belajar React.js untuk frontend development</div>
<div class="learning-item">Memahami Node.js untuk backend basics</div>
<div class="learning-item">Database fundamentals (SQL/MongoDB)</div>
<div class="learning-item">API integration dan RESTful services</div>
<div class="learning-item">Testing dan deployment practices</div>
</div>
</div>
<div class="section">
<h2>Mengapa Memilih Saya?</h2>
<div class="projects-grid">
<div class="project-card">
<h3>๐ Growth Mindset</h3>
<p>Saya memiliki mentalitas belajar yang kuat dan tidak takut menghadapi challenge baru. Setiap error adalah pembelajaran berharga.</p>
</div>
<div class="project-card">
<h3>โฐ Commitment</h3>
<p>Saya berkomitmen untuk terus belajar dan berkembang. Investasi pelatihan pada saya akan memberikan ROI jangka panjang.</p>
</div>
<div class="project-card">
<h3>๐ค Team Player</h3>
<p>Saya percaya bahwa kolaborasi dan komunikasi yang baik adalah kunci sukses dalam development team.</p>
</div>
</div>
</div>
</div>
<div class="contact">
<h2>Mari Berkolaborasi!</h2>
<p>Saya siap untuk memulai perjalanan sebagai developer di perusahaan Anda. Mari diskusikan bagaimana saya dapat berkontribusi untuk tim Anda.</p>
<div class="contact-links">
<a href="mailto:hayukurniawan@gmail.com" class="contact-link">๐ง Email</a>
<a href="https://linkedin.com/in/hayukurniawan" class="contact-link">๐ผ LinkedIn</a>
<a href="https://github.com/hayukurniawan" class="contact-link">๐ป GitHub</a>
<a href="https://wa.me/6285736423884" class="contact-link">๐ WhatsApp</a>
</div>
</div>
</div>
<script>
// Simple animation for scroll
window.addEventListener('scroll', () => {
const elements = document.querySelectorAll('.section');
elements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const elementVisible = 150;
if (elementTop < window.innerHeight - elementVisible) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
});
// Smooth scrolling for CTA button
document.querySelector('.cta-button').addEventListener('click', (e) => {
e.preventDefault();
document.querySelector('#projects').scrollIntoView({
behavior: 'smooth'
});
});
// Interactive skill cards
document.querySelectorAll('.skill-card').forEach(card => {
card.addEventListener('mouseenter', () => {
card.style.transform = 'translateY(-10px) scale(1.02)';
});
card.addEventListener('mouseleave', () => {
card.style.transform = 'translateY(-5px) scale(1)';
});
});
</script>
</body>
</html>