-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
472 lines (416 loc) · 14.5 KB
/
index.html
File metadata and controls
472 lines (416 loc) · 14.5 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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Samy Bensalem</title>
<link rel="icon" href="images/red-hat.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
color: white;
overflow-x: hidden;
background: linear-gradient(to bottom, #0a192f, #1e3b60);
position: relative;
}
.animated-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -2;
pointer-events: none;
}
.stars {
position: absolute;
width: 2px;
height: 2px;
background: white;
border-radius: 50%;
animation: animStars linear infinite;
}
@keyframes animStars {
from {
transform: translateY(100vh);
}
to {
transform: translateY(-100vh);
}
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background: rgba(10, 25, 47, 0.8);
position: fixed;
width: 100%;
z-index: 1;
box-sizing: border-box;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.navbar a {
color: white;
text-decoration: none;
margin: 0 10px;
padding: 10px;
border-radius: 5px;
transition: background 0.5s ease, color 0.3s ease;
}
.navbar a:hover {
background: #62feda;
color: #0a192f;
}
/* Styles pour le menu burger */
.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
position: absolute;
right: 20px;
}
.menu-toggle span {
width: 25px;
height: 3px;
background: white;
margin: 5px 0;
transition: 0.4s;
}
.navbar-links {
display: flex;
align-items: center;
justify-content: center;
}
/* Media query pour rendre le menu responsive */
@media (max-width: 768px) {
.navbar-links {
display: none;
flex-direction: column;
width: 100%;
background: rgba(10, 25, 47, 0.9);
position: absolute;
top: 60px;
left: 0;
}
.navbar-links a {
margin: 10px 0;
text-align: center;
}
.menu-toggle {
display: flex;
}
.navbar.active .navbar-links {
display: flex;
}
/* Animation du menu burger */
.menu-toggle.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
}
header {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
z-index: 0;
}
header h1 {
font-size: 3rem;
color: #62feda;
animation: floatingText 3s infinite alternate;
}
header p {
font-size: 1.2rem;
margin-top: 10px;
}
@keyframes floatingText {
from {
transform: translateY(0);
}
to {
transform: translateY(-10px);
}
}
section {
padding: 100px 30px;
max-width: 1200px;
margin: 0 auto;
z-index: 0;
position: relative;
}
h2 {
color: #62feda;
margin-bottom: 20px;
font-size: 2rem;
position: relative;
}
h2::after {
content: "";
width: 50px;
height: 4px;
background: #62feda;
display: block;
margin-top: 10px;
border-radius: 2px;
}
.card {
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
margin-bottom: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
background: rgba(15, 35, 65, 0.8);
text-decoration: none;
color: inherit;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
background: rgba(20, 40, 70, 0.9);
}
.grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.contact {
background: rgba(0, 40, 100, 0.9);
padding: 50px;
text-align: center;
}
.contact a {
color: #62feda;
text-decoration: none;
font-weight: bold;
padding: 10px 20px;
border: 2px solid #62feda;
border-radius: 5px;
transition: background 0.3s ease, color 0.3s ease;
}
.contact a:hover {
background: #62feda;
color: #0a192f;
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
margin-top: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
ul {
list-style: none;
padding: 0;
}
ul li::before {
content: "•";
color: #62feda;
margin-right: 8px;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function () {
const projectContainer = document.getElementById('projects-container');
fetch('get_github_projects.php')
.then(response => response.json())
.then(projects => {
projects.forEach(project => {
const card = document.createElement('a');
card.className = 'card';
card.href = project.url;
card.target = "_blank";
const title = document.createElement('h3');
title.innerText = project.name;
card.appendChild(title);
const description = document.createElement('p');
description.innerText = project.description;
card.appendChild(description);
const techUsed = document.createElement('p');
techUsed.innerHTML = `<strong>Technologies utilisées:</strong> ${project.languages}`;
card.appendChild(techUsed);
projectContainer.appendChild(card);
});
})
.catch(error => console.error('Erreur lors de la récupération des projets :', error));
// JavaScript pour le menu burger
const menuToggle = document.querySelector('.menu-toggle');
const navbar = document.querySelector('.navbar');
menuToggle.addEventListener('click', () => {
navbar.classList.toggle('active');
menuToggle.classList.toggle('active');
});
});
</script>
</head>
<body>
<div class="animated-background">
<script>
const numStars = 500;
for (let i = 0; i < numStars; i++) {
const star = document.createElement('div');
star.className = 'stars';
star.style.left = `${Math.random() * 100}%`;
star.style.top = `${Math.random() * 100}vh`;
star.style.animationDuration = `${Math.random() * 60 + 15}s`;
document.querySelector('.animated-background').appendChild(star);
}
</script>
</div>
<div class="navbar">
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<div class="navbar-links">
<a href="#about">À propos de moi</a>
<a href="#education">Parcours scolaire</a>
<a href="#experience">Expérience professionnelle</a>
<a href="#skills">Compétences</a>
<a href="#projects">Projets</a>
<a href="#contact">Contact</a>
</div>
</div>
<header>
<h1>Samy Bensalem</h1>
<p>Administrateur Réseaux & Sécurité</p>
</header>
<section id="about">
<h2>À propos de moi</h2>
<div class="card">
<img src="images/profile.jpg" alt="Portrait de Samy Bensalem" class="profile-image" width="150" height="150">
<p>Je suis un administrateur réseaux spécialisé en cybersécurité. Passionné par la programmation et la culture japonaise, je m'intéresse aux nouvelles technologies.</p>
<ul>
<li>Âge : 23 ans</li>
<li>Localisation : Osny | 95</li>
<li>Contact: samy.bensalem@etik.com | Telephone </li>
</ul>
</div>
</section>
<section id="education">
<h2>Parcours scolaire</h2>
<div class="card">
<h3>Bac +5 Cybersécurité - E3IN (1ans/2ans)</h3>
<p>2024 - Now , ESIEE-IT Pontoise</p>
</div>
<div class="card">
<h3>Bachelor informatique L3 - Cybersécurité</h3>
<p>2023 - 2024, ESIEE-IT Pontoise</p>
</div>
<div class="card">
<h3>Diplôme d'Ingénieur Réseaux & Sécurité</h3>
<p>09/2022 - 09/2023, ESIEE-IT PONTOISE</p>
</div>
<div class="card">
<h3>BTS Systèmes Numériques Informatique et Réseaux</h3>
<p>2020 - 2022, ESIEE-IT PONTOISE</p>
</div>
<div class="card">
<h3>Baccalauréat STI2D Option SIN</h3>
<p>07/2020, Jean Perrin Saint-Ouen-l’Aumône</p>
</div>
</section>
<section id="experience">
<h2>Expérience professionnelle</h2>
<div class="card">
<h3>Administrateur Réseaux & Sécurité</h3>
<p>2023 - 2024, BIOFUTUR Cergy 95</p>
<ul>
<li>Gestion du parc informatique</li>
<li>Déploiement de solutions de cybersécurité</li>
<li>Réalisations de projets</li>
</ul>
</div>
<div class="card">
<h3>Administrateur Réseaux & Sécurité</h3>
<p>2022 - 2023, BIOFUTUR Cergy 95</p>
<ul>
<li>Gestion du parc informatique</li>
<li>Déploiement de solutions de cybersécurité</li>
</ul>
</div>
<div class="card">
<h3>Développeur web</h3>
<p>2021 - 2022, BIOFUTUR Cergy 95</p>
<ul>
<li>Refonte du site web existant.</li>
<li>Sécurisation des accès et des comptes utilisateurs.</li>
<li>Gestion et mise à jour du site web.</li>
</ul>
</div>
<div class="card">
<h3>Développeur web</h3>
<p>2020 - 2021, BERIM Pantin, 95520</p>
<ul>
<li>Conception du site web</li>
<li>Ajout de modules (offres d'emplois, etc.)</li>
</ul>
</div>
</section>
<section id="skills">
<h2>Compétences</h2>
<div class="grid">
<div class="card">
<h3>Soft Skills</h3>
<ul>
<li>Esprit Critique</li>
<li>Résolutions de problèmes</li>
<li>Sens du service</li>
<li>Créativité</li>
</ul>
</div>
<div class="card">
<h3>Hard Skills</h3>
<ul>
<li>Maitrise Active Directory</li>
<li>Scripting shell / bash </li>
<li>Environement Linux</li>
<li>Programmation (C++, C, Python, Java)</li>
<li>HTML/CSS/JavaScript/PHP/SQL</li>
<li>Modélisations 3D</li>
</ul>
</div>
</div>
<div class="grid">
<div class="card">
<h3>Langues</h3>
<ul>
<li>Anglais - Niveau B1/B2</li>
<li>Espagnol - Niveau A2/B1</li>
</ul>
</div>
<div class="card">
<h3>Centres d'intérêt</h3>
<ul>
<li>Programmation</li>
<li>Nouvelles technologies</li>
<li>Tir à l'arc</li>
<li>Culture japonaise</li>
</ul>
</div>
</div>
</section>
<section id="projects">
<h2>Projets</h2>
<div class="grid" id="projects-container">
<!-- projets GitHub affichés ici -->
</div>
</section>
<div class="contact" id="contact">
<h2>Contactez-moi</h2>
<p>Vous pouvez me joindre par email à <a href="mailto:samy.bensalem@etik.com">samy.bensalem@etik.com</a> ou par téléphone au "Telephone".</p>
</body>
</html>