bilrl commited on
Commit
746f92a
·
verified ·
1 Parent(s): cf258b4

Upload 2 files

Browse files
Files changed (3) hide show
  1. .gitattributes +1 -0
  2. index.html +400 -0
  3. profile.jpg +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ profile.jpg filter=lfs diff=lfs merge=lfs -text
index.html ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Bilel Ayari - Portfolio</title>
8
+ <style>
9
+ * {
10
+ margin: 0;
11
+ padding: 0;
12
+ box-sizing: border-box;
13
+ }
14
+
15
+ body {
16
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
17
+ line-height: 1.6;
18
+ color: #333;
19
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
20
+ min-height: 100vh;
21
+ }
22
+
23
+ .container {
24
+ max-width: 1000px;
25
+ margin: 0 auto;
26
+ background: white;
27
+ box-shadow: 0 0 20px rgba(0,0,0,0.1);
28
+ border-radius: 10px;
29
+ overflow: hidden;
30
+ margin-top: 20px;
31
+ margin-bottom: 20px;
32
+ }
33
+
34
+ header {
35
+ background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
36
+ color: white;
37
+ padding: 60px 20px;
38
+ text-align: center;
39
+ position: relative;
40
+ }
41
+
42
+ header::before {
43
+ content: '';
44
+ position: absolute;
45
+ top: 0;
46
+ left: 0;
47
+ right: 0;
48
+ bottom: 0;
49
+ background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
50
+ opacity: 0.3;
51
+ }
52
+
53
+ header h1 {
54
+ font-size: 3em;
55
+ margin-bottom: 10px;
56
+ position: relative;
57
+ z-index: 1;
58
+ }
59
+
60
+ header p {
61
+ font-size: 1.2em;
62
+ opacity: 0.9;
63
+ position: relative;
64
+ z-index: 1;
65
+ }
66
+
67
+ .profile-container {
68
+ position: relative;
69
+ z-index: 1;
70
+ margin-top: 30px;
71
+ }
72
+
73
+ img.profile {
74
+ width: 180px;
75
+ height: 180px;
76
+ border-radius: 50%;
77
+ border: 5px solid rgba(255,255,255,0.3);
78
+ object-fit: cover;
79
+ transition: transform 0.3s ease;
80
+ }
81
+
82
+ img.profile:hover {
83
+ transform: scale(1.05);
84
+ }
85
+
86
+ .profile-placeholder {
87
+ width: 180px;
88
+ height: 180px;
89
+ border-radius: 50%;
90
+ background: linear-gradient(135deg, #3498db, #2980b9);
91
+ display: flex;
92
+ align-items: center;
93
+ justify-content: center;
94
+ font-size: 4em;
95
+ color: white;
96
+ margin: 0 auto;
97
+ border: 5px solid rgba(255,255,255,0.3);
98
+ transition: transform 0.3s ease;
99
+ }
100
+
101
+ .profile-placeholder:hover {
102
+ transform: scale(1.05);
103
+ }
104
+
105
+ section {
106
+ padding: 40px;
107
+ }
108
+
109
+ h2 {
110
+ color: #2c3e50;
111
+ border-bottom: 3px solid #3498db;
112
+ padding-bottom: 10px;
113
+ margin-bottom: 25px;
114
+ font-size: 1.8em;
115
+ position: relative;
116
+ }
117
+
118
+ h2::after {
119
+ content: '';
120
+ position: absolute;
121
+ bottom: -3px;
122
+ left: 0;
123
+ width: 50px;
124
+ height: 3px;
125
+ background: #e74c3c;
126
+ }
127
+
128
+ .about-me {
129
+ background: #f8f9fa;
130
+ padding: 30px;
131
+ border-radius: 10px;
132
+ margin-bottom: 30px;
133
+ border-left: 5px solid #3498db;
134
+ }
135
+
136
+ ul {
137
+ list-style: none;
138
+ padding: 0;
139
+ }
140
+
141
+ li {
142
+ margin: 15px 0;
143
+ padding: 15px;
144
+ background: #f8f9fa;
145
+ border-radius: 8px;
146
+ border-left: 4px solid #3498db;
147
+ transition: all 0.3s ease;
148
+ }
149
+
150
+ li:hover {
151
+ background: #e3f2fd;
152
+ transform: translateX(5px);
153
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
154
+ }
155
+
156
+ li strong {
157
+ color: #2c3e50;
158
+ display: block;
159
+ margin-bottom: 5px;
160
+ }
161
+
162
+ .skills-grid {
163
+ display: grid;
164
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
165
+ gap: 20px;
166
+ margin-top: 20px;
167
+ }
168
+
169
+ .skill-category {
170
+ background: #f8f9fa;
171
+ padding: 20px;
172
+ border-radius: 10px;
173
+ border-top: 4px solid #3498db;
174
+ }
175
+
176
+ .skill-category h3 {
177
+ color: #2c3e50;
178
+ margin-bottom: 15px;
179
+ font-size: 1.2em;
180
+ }
181
+
182
+ .languages-grid {
183
+ display: grid;
184
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
185
+ gap: 15px;
186
+ margin-top: 20px;
187
+ }
188
+
189
+ .language-item {
190
+ background: linear-gradient(135deg, #3498db, #2980b9);
191
+ color: white;
192
+ padding: 15px;
193
+ border-radius: 8px;
194
+ text-align: center;
195
+ transition: transform 0.3s ease;
196
+ }
197
+
198
+ .language-item:hover {
199
+ transform: translateY(-5px);
200
+ }
201
+
202
+ footer {
203
+ background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
204
+ color: white;
205
+ text-align: center;
206
+ padding: 30px;
207
+ position: relative;
208
+ }
209
+
210
+ .contact-info {
211
+ font-size: 1.1em;
212
+ }
213
+
214
+ .contact-info a {
215
+ color: #3498db;
216
+ text-decoration: none;
217
+ transition: color 0.3s ease;
218
+ }
219
+
220
+ .contact-info a:hover {
221
+ color: #2980b9;
222
+ }
223
+
224
+ /* Responsive Design */
225
+ @media (max-width: 768px) {
226
+ .container {
227
+ margin: 10px;
228
+ border-radius: 0;
229
+ }
230
+
231
+ header {
232
+ padding: 40px 20px;
233
+ }
234
+
235
+ header h1 {
236
+ font-size: 2.2em;
237
+ }
238
+
239
+ section {
240
+ padding: 20px;
241
+ }
242
+
243
+ .skills-grid {
244
+ grid-template-columns: 1fr;
245
+ }
246
+
247
+ .languages-grid {
248
+ grid-template-columns: repeat(2, 1fr);
249
+ }
250
+ }
251
+
252
+ @media (max-width: 480px) {
253
+ header h1 {
254
+ font-size: 1.8em;
255
+ }
256
+
257
+ .languages-grid {
258
+ grid-template-columns: 1fr;
259
+ }
260
+ }
261
+
262
+ /* Animation for page load */
263
+ @keyframes fadeInUp {
264
+ from {
265
+ opacity: 0;
266
+ transform: translateY(30px);
267
+ }
268
+ to {
269
+ opacity: 1;
270
+ transform: translateY(0);
271
+ }
272
+ }
273
+
274
+ section {
275
+ animation: fadeInUp 0.6s ease-out;
276
+ }
277
+
278
+ section:nth-child(even) {
279
+ animation-delay: 0.1s;
280
+ }
281
+
282
+ section:nth-child(odd) {
283
+ animation-delay: 0.2s;
284
+ }
285
+ </style>
286
+ </head>
287
+ <body>
288
+ <div class="container">
289
+ <header>
290
+ <h1>Bilel Ayari</h1>
291
+ <p>Student in Business Intelligence and Informatics</p>
292
+ <div class="profile-container">
293
+ <img src="profile.jpg" alt="Bilel Dali" class="profile">
294
+ </div>
295
+ </header>
296
+
297
+ <section>
298
+ <h2>About Me</h2>
299
+ <div class="about-me">
300
+ <p>A motivated second-year student pursuing a License in Business Intelligence and Informatics, seeking to leverage my skills, teamwork experience, and diverse work background to contribute effectively to a dynamic organization while continuing to grow professionally.</p>
301
+ </div>
302
+ </section>
303
+
304
+ <section>
305
+ <h2>Education</h2>
306
+ <ul>
307
+ <li>Institut Supérieur d'Administration des Affaires, Tunis, Tunisia – 2024 – Present and successful</li>
308
+ <li>Lycée Raoued, Tunis, Tunisia – Graduated: 2024</li>
309
+
310
+ </ul>
311
+ </section>
312
+
313
+ <section>
314
+ <h2>Work Experience</h2>
315
+ <ul>
316
+ <li>Ramada Plaza Hotel, Tunis (2024): Assisted in food and beverage preparation and service, ensuring high-quality customer satisfaction. Supported bar operations, maintaining cleanliness and organization while serving guests efficiently i work also like a agent case .</li>
317
+ <li>Centre Commercial Gammart, Tunis (Summer 2023): Performed computer hardware installations and resolved operating system issues. Conducted general maintenance tasks to ensure smooth operations at the commercial center.</li>
318
+ <li>Centre Commercial Gammart, Tunis (2022 - 3 months): Ensured the safety and security of the premises by monitoring activities and maintaining order. Collaborated with the team to manage access control and address safety concerns.</li>
319
+
320
+ </ul>
321
+ </section>
322
+
323
+ <section>
324
+ <h2>Projects & Achievements</h2>
325
+ <ul>
326
+ <li>
327
+ <strong>Forsa.tn - E-commerce Landing Page</strong>
328
+ <p>Developed a professional e-commerce landing page for fitness equipment sales. Features bilingual content (Arabic/French), responsive design, product showcase, and integrated order form with payment options. Deployed on Netlify with modern web technologies.</p>
329
+ <p><a href="https://68439d2c8563083912ee48d7--forsatn.netlify.app/" target="_blank" style="color: #3498db; text-decoration: none;">🔗 View Live Project</a></p>
330
+ </li>
331
+ <li>Programmed and developed a website as part of a group project, showcasing strong coding and teamwork skills. (tech used: HTML/CSS, JavaScript, SQL.)</li>
332
+ <li>Seminar Evaluator (Suminaire de Travail): Participated in evaluating and providing feedback for professional seminars, demonstrating analytical and critical thinking abilities.</li>
333
+ <li>Admin at Club Tunivision: Actively contributed to organizing events and managing club activities, enhancing leadership and organizational skills.</li>
334
+
335
+ </ul>
336
+ </section>
337
+
338
+ <section>
339
+ <h2>Certifications</h2>
340
+ <ul>
341
+ <li>EVOVISION Conference (The Z Hotel, Sfax, Tunisia | April 26, 2025): Awarded for active participation and contribution to the success of the EVOVISION conference focused on personal development and leadership for youth.</li>
342
+ <li>EFSET English Certification (B1 Level Achieved): B1 level proficiency in English, demonstrating intermediate language skills for professional and academic use.</li>
343
+
344
+ </ul>
345
+ </section>
346
+
347
+ <section>
348
+ <h2>Skills</h2>
349
+ <div class="skills-grid">
350
+ <div class="skill-category">
351
+ <h3>Programming & Web Development</h3>
352
+ <p>Website Programming (HTML, CSS, JavaScript, Python basics)</p>
353
+ </div>
354
+ <div class="skill-category">
355
+ <h3>Database Management</h3>
356
+ <p>Database Management (MySQL, Access)</p>
357
+ </div>
358
+ <div class="skill-category">
359
+ <h3>Software & Tools</h3>
360
+ <p>Tools: Excel (Advanced), Visual Studio Code, PowerPoint, Word</p>
361
+ </div>
362
+ <div class="skill-category">
363
+ <h3>Technical Skills</h3>
364
+ <p>Computer Hardware Installation, Operating System Troubleshooting, AI Tools: Proficient in using AI to streamline and simplify work processes, Adaptability to New Technologies: Quick learner in adopting emerging tools and platforms</p>
365
+ </div>
366
+ <div class="skill-category">
367
+ <h3>Soft Skills</h3>
368
+ <p>Teamwork and Collaboration, Leadership (Admin in Club Tunivision SFAX), Problem-Solving, Time Management</p>
369
+ </div>
370
+
371
+ </div>
372
+ </section>
373
+
374
+ <section>
375
+ <h2>Languages</h2>
376
+ <div class="languages-grid">
377
+ <div class="language-item">
378
+ <strong>Arabic</strong><br>Advanced (Native or near-native proficiency)
379
+ </div>
380
+ <div class="language-item">
381
+ <strong>French</strong><br>Advanced (Professional working proficiency)
382
+ </div>
383
+ <div class="language-item">
384
+ <strong>English</strong><br>Proficient (Working proficiency)
385
+ </div>
386
+ <div class="language-item">
387
+ <strong>German</strong><br>Basic (Limited working proficiency)
388
+ </div>
389
+
390
+ </div>
391
+ </section>
392
+ </div>
393
+
394
+ <footer>
395
+ <div class="contact-info">
396
+ Contact me: <a href="mailto:ba336158@gmail.com">ba336158@gmail.com</a>
397
+ </div>
398
+ </footer>
399
+ </body>
400
+ </html>
profile.jpg ADDED

Git LFS Details

  • SHA256: 47e26c0b40439e9600b5348617672db2a00833e84d79e8f3ce6c8d25d671b01c
  • Pointer size: 131 Bytes
  • Size of remote file: 939 kB