-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
404 lines (350 loc) · 11.3 KB
/
index.html
File metadata and controls
404 lines (350 loc) · 11.3 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - ZOUKENI ISMAIL | Développeur Full Stack</title>
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--dark-color: #0a0a0a; /* Noir profond */
--darker-color: #050505; /* Noir plus foncé */
--neon-green: #00ff9d; /* Vert néon */
--light-green: #00d084; /* Vert plus doux */
--light-color: #f0f0f0; /* Blanc doux */
--section-padding: 80px 0;
}
body {
background-color: var(--dark-color);
color: var(--light-color);
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
line-height: 1.6;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--darker-color);
}
::-webkit-scrollbar-thumb {
background: var(--neon-green);
border-radius: 10px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
}
.text-neon {
color: var(--neon-green);
}
.mono-font {
font-family: 'Roboto Mono', monospace;
}
/* Navbar */
.navbar {
background-color: rgba(10, 10, 10, 0.95) !important;
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 255, 157, 0.1);
transition: all 0.3s ease;
}
.navbar.scrolled {
padding: 10px 0;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--light-color) !important;
}
.navbar-brand span {
color: var(--neon-green);
}
.nav-link {
position: relative;
margin: 0 8px;
font-weight: 500;
color: var(--light-color) !important;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--neon-green);
transition: width 0.3s ease;
}
.nav-link:hover {
color: var(--neon-green) !important;
}
.nav-link:hover::after {
width: 100%;
}
.nav-link.active {
color: var(--neon-green) !important;
font-weight: 600;
}
.nav-link.active::after {
width: 100%;
}
/* Hero Section */
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
padding: 100px 0;
position: relative;
overflow: hidden;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.05) 0%, transparent 20%),
radial-gradient(circle at 80% 70%, rgba(10, 10, 10, 0.1) 0%, transparent 20%);
z-index: -1;
animation: pulse 15s infinite alternate;
}
@keyframes pulse {
0% { opacity: 0.8; }
100% { opacity: 1; }
}
.profile-img {
width: 100%;
max-width: 350px;
border-radius: 50%;
border: 3px solid var(--neon-green);
box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
transition: all 0.5s ease;
}
.profile-img:hover {
transform: scale(1.03);
box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}
/* Buttons */
.btn-custom {
padding: 10px 25px;
border-radius: 4px;
font-weight: 600;
letter-spacing: 1px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
}
.btn-primary-custom {
background-color: var(--neon-green);
color: var(--dark-color);
}
.btn-outline-custom {
background-color: transparent;
color: var(--neon-green);
border: 2px solid var(--neon-green);
}
.btn-primary-custom:hover {
background-color: var(--light-green);
color: var(--dark-color);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
}
.btn-outline-custom:hover {
background-color: rgba(0, 255, 157, 0.1);
color: var(--neon-green);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}
/* Social Icons */
.social-icons a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(0, 255, 157, 0.1);
color: var(--light-color);
font-size: 1.2rem;
margin: 0 8px;
transition: all 0.3s ease;
border: 1px solid rgba(0, 255, 157, 0.2);
}
.social-icons a:hover {
background: rgba(0, 255, 157, 0.2);
color: var(--neon-green);
transform: translateY(-3px);
}
/* Footer */
footer {
background-color: var(--darker-color);
padding: 50px 0 20px;
border-top: 1px solid rgba(0, 255, 157, 0.1);
}
.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
margin-top: 30px;
}
/* Animations */
.fade-in {
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
/* Responsive adjustments */
@media (max-width: 991px) {
.hero-section {
text-align: center;
}
.profile-img {
margin-bottom: 40px;
max-width: 280px;
}
}
@media (max-width: 767px) {
.display-3 {
font-size: 2.2rem;
}
}
</style>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<span class="mono-font"><</span>ZOUKENI<span class="mono-font">/></span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html"><i class="bi bi-house-door-fill me-2"></i>Accueil</a>
</li>
<li class="nav-item">
<a class="nav-link" href="apropos.html"><i class="bi bi-person-fill me-2"></i>À propos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projet.html"><i class="bi bi-code-slash me-2"></i>Projets</a>
</li>
<li class="nav-item">
<a class="nav-link" href="competences.html"><i class="bi bi-tools me-2"></i>Compétences</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html"><i class="bi bi-envelope-fill me-2"></i>Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- HERO SECTION -->
<section class="hero-section">
<div class="hero-bg"></div>
<div class="container">
<div class="row align-items-center">
<!-- Image à gauche -->
<div class="col-lg-6 mb-5 mb-lg-0 fade-in">
<div class="text-center">
<img src="1.jpg" alt="ZOUKENI ISMAIL - Développeur Full Stack" class="img-fluid profile-img">
</div>
</div>
<!-- Infos à droite -->
<div class="col-lg-6 text-center text-lg-start">
<h4 class="text-neon mono-font mb-3 fade-in" style="animation-delay: 0.2s;">Bonjour, je m'appelle</h4>
<h1 class="display-3 fw-bold mb-3 fade-in" style="animation-delay: 0.4s;">
<span class="mono-font text-neon"><</span>
ZOUKENI ISMAIL
<span class="mono-font text-neon">/></span>
</h1>
<h2 class="h3 mb-4 float" style="animation-delay: 0.6s;">
Je suis <span class="text-neon">Développeur Full Stack</span>
</h2>
<p class="mb-4 fade-in" style="animation-delay: 0.8s;">
Passionné par la création d'applications web modernes avec des technologies comme React, Node.js et MongoDB.
Je combine design élégant et code robuste pour créer des expériences digitales mémorables.
</p>
<div class="d-flex justify-content-center justify-content-lg-start gap-3 fade-in" style="animation-delay: 1s;">
<a href="contact.html" class="btn btn-primary-custom btn-custom">
<i class="bi bi-envelope me-2"></i>Me contacter
</a>
<a href="projet.html" class="btn btn-outline-custom btn-custom">
<i class="bi bi-collection me-2"></i>Mes projets
</a>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="container text-center">
<div class="social-icons mb-4">
<a href="https://github.com/ismailzoukenissas" class="mx-2" title="GitHub"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/ismail-zoukeni-22b82832a/" class="mx-2" title="LinkedIn"><i class="bi bi-linkedin"></i></a>
<a href="https://www.instagram.com/ismailzoukeni/" class="mx-2" title="Instagram"><i class="bi bi-instagram"></i></a>
</div>
<div>
<p class="mb-3">Développeur Full Stack & Étudiant en Ingénierie Informatique</p>
<p class="copyright mb-0">
© <span id="current-year"></span> ZOUKENI ISMAIL. Tous droits réservés.
</p>
</div>
</div>
</footer>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Navbar scroll effect
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
// Current year for footer
document.getElementById('current-year').textContent = new Date().getFullYear();
// Simple fade-in animation for elements
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
fadeElements.forEach(el => {
el.style.opacity = 0;
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
fadeInObserver.observe(el);
});
</script>
</body>
</html>