-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindes.html
More file actions
233 lines (233 loc) · 8.85 KB
/
indes.html
File metadata and controls
233 lines (233 loc) · 8.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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>CV Manoel Abe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
margin: 0;
background: #f2f4f9;
color: #222;
}
.cv-wrapper {
max-width: 1000px;
background: #fff;
margin: 40px auto;
box-shadow: 0 8px 32px #6d84a022;
border-radius: 16px;
display: flex;
overflow: hidden;
}
.cv-left {
background: linear-gradient(135deg, #3249a6 60%, #49dfba 100%);
color: #fff;
width: 30%;
min-width: 260px;
display: flex;
flex-direction: column;
align-items: center;
padding: 36px 24px 36px 24px;
}
.profile-pic {
width: 130px;
height: 130px;
border-radius: 50%;
box-shadow: 0 4px 18px #23498188;
object-fit: cover;
border: 5px solid #fff;
margin-bottom: 24px;
transition: transform .2s;
}
.profile-pic:hover {
transform: scale(1.07) rotate(-2deg);
}
.cv-left h1 {
font-size: 1.8rem;
letter-spacing: 1px;
margin-bottom: 5px;
}
.cv-left .subtitle {
font-size: 1.06em;
font-weight: 300;
letter-spacing: .5px;
margin-bottom: 25px;
}
.cv-left .contact {
margin: 20px 0;
font-size: 0.99em;
}
.cv-left .contact div {
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.cv-left .contact i {
width: 22px;
}
.cv-left .langues, .cv-left .certifications {
margin-top: 30px;
}
.cv-left ul {
list-style: none;
padding: 0;
}
.cv-left li {
margin-bottom: 7px;
}
.cv-right {
width: 70%;
padding: 48px 44px 44px 44px;
background: #fff;
}
h2 {
color: #2e4198;
font-size: 1.25em;
margin-bottom: 12px;
border-left: 4px solid #49dfba;
padding-left: 13px;
}
.section {
margin-bottom: 30px;
animation: fadeinup .8s;
}
@keyframes fadeinup {
from { opacity: 0; transform: translateY(18px);}
to { opacity: 1; transform: translateY(0);}
}
.profil {
font-size: 1.12em;
background: #f4f7fc;
border-left: 5px solid #49dfba;
margin-bottom: 25px;
padding: 18px 20px 18px 24px;
border-radius: 7px;
}
.xp-entry {
margin-bottom: 19px;
}
.xp-title {
font-weight: bold;
color: #234981;
font-size: 1em;
}
.xp-date {
color: #7cb;
font-size: .98em;
margin-left: 8px;
}
.xp-subtitle {
font-style: italic;
font-size: 0.98em;
}
.cv-right ul {
margin: 0;
padding: 0 0 0 16px;
}
.competences-li {
margin-bottom: 4px;
}
/* Responsive */
@media (max-width: 800px) {
.cv-wrapper {flex-direction: column;}
.cv-left, .cv-right {width: 100%; min-width: unset; border-radius: 0;}
.cv-right {padding: 28px 14px;}
}
</style>
</head>
<body>
<div class="cv-wrapper">
<div class="cv-left">
<img src="https://randomuser.me/api/portraits/men/99.jpg" alt="photo de profil" class="profile-pic"><!-- Remplacez l'URL par votre vraie photo -->
<h1>Manoel Abe</h1>
<div class="subtitle">Étudiant en Cybersécurité & IA</div>
<div class="contact">
<div><i>📧</i> abemanoel08@gmail.com</div>
<div><i>📍</i> 178 Rue de Crime, Paris 78019</div>
<div><i>📱</i> +33 0746389823</div>
<div><i>🔗</i> LinkedIn: manoelabe08</div>
<div><i>🚘</i> Permis ABCDE</div>
</div>
<div class="langues">
<h3>Langues</h3>
<ul>
<li>Français</li>
<li>Anglais</li>
<li>Allemand</li>
</ul>
</div>
<div class="certifications">
<h3>Certifications</h3>
<ul>
<li>CISCO Networking Academy</li>
<li>ANSSI-MOOC Cybersécurité</li>
<li>Cisco NETACAD Cybersécurité</li>
<li>OpenClassrooms Développement Web</li>
</ul>
</div>
</div>
<div class="cv-right">
<div class="section profil">
Passionné par la sécurité des systèmes d'information, aspirant analyste SOC, très intéressé par la sécurité des réseaux, des applications, l’IoT, le web et l’IA.
</div>
<div class="section">
<h2>Formation</h2>
<ul>
<li><b>Sept. 2025 - présent</b> — <b>ESEO Paris Vélizy</b>, Cycle Ingénieur IA & Cybersécurité</li>
<li><b>2018-2022</b> — Université Virtuelle de Côte d’Ivoire, Maîtrise Bac+4 Cybersécurité & IoT, Licence Réseaux & Sécurité Informatique, Mention Assez Bien</li>
</ul>
</div>
<div class="section">
<h2>Expérience professionnelle</h2>
<div class="xp-entry">
<span class="xp-title">Chef du service informatique</span>
<span class="xp-date">EPV Bon Berger Abobo, sept. 2022 - juin 2025</span>
<div class="xp-subtitle">Administration et gestion du système informatique de l’établissement.</div>
</div>
<div class="xp-entry">
<span class="xp-title">Volontaire - Commission NTIC</span>
<span class="xp-date">CAN 2023, 2023-2024</span>
<div class="xp-subtitle">Assistance à la mise en place des infrastructures technologiques et gestion des systèmes de communication durant la compétition.</div>
</div>
<div class="xp-entry">
<span class="xp-title">Chargé de création / Admin site web</span>
<span class="xp-date">La Boutique d’Adjamé, fév. - nov. 2022</span>
<div class="xp-subtitle">Création et administration du site WordPress.</div>
</div>
<div class="xp-entry">
<span class="xp-title">Technicien Réseaux</span>
<span class="xp-date">AK SECURITY, avr. - août 2021</span>
<div class="xp-subtitle">Installation de caméras, visiophonie, câblage informatique, administration systèmes de sécurité électronique.</div>
</div>
<div class="xp-entry">
<span class="xp-title">Infographiste / Dév. web</span>
<span class="xp-date">Fondation Jeunesse Numérique, 2019-2021</span>
<div class="xp-subtitle">Création identité visuelle (logo, cartes, sites, affiches, maquettes mobiles, e-learning, etc.)</div>
</div>
<div class="xp-entry">
<span class="xp-title">Bénévole - U-REPORT</span>
<span class="xp-date">mars 2018 - juin 2019</span>
<div class="xp-subtitle">Sensibilisation citoyenne, initiateur de la Journée du Numérique au Féminin.</div>
</div>
<div class="xp-entry">
<span class="xp-title">Président Club Informatique</span>
<span class="xp-date">Lycée Moderne 1 Abobo, mars 2018 - juin 2019</span>
<div class="xp-subtitle">Organisation, formation et gestion de projets de programmation et développement.</div>
</div>
</div>
<div class="section">
<h2>Compétences</h2>
<ul>
<li class="competences-li">Cybersécurité</li>
<li class="competences-li">Programmation web, CMS</li>
<li class="competences-li">Infographie</li>
<li class="competences-li">Administration de réseaux</li>
<li class="competences-li">Sécurité électronique</li>
</ul>
</div>
</div>
</div>
</body>
</html>