All checks were successful
		
		
	
	DEPLOY / deploy (push) Successful in 8s
				
			feat(static): add CV_2025.pdf to provide an updated curriculum vitae for users
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | ||
| <html lang="fr">
 | ||
|     <head>
 | ||
|         <title>CV</title>
 | ||
|         <meta charset="UTF-8" />
 | ||
|         <link rel="stylesheet" href="/static/style.css" />
 | ||
|         <script src="/static/js/utils.js" defer></script>
 | ||
|     </head>
 | ||
|     <body>
 | ||
|         <header>
 | ||
|             <div class="links">
 | ||
|                 <a href="/" class="header_button">Home Page</a>
 | ||
|                 <a href="/projects.html" class="header_button">Projets</a>
 | ||
|                 <a href="/about.html" class="header_button">A propos de moi</a>
 | ||
|                 <a href="/quizz" class="header_button">Vibe check</a>
 | ||
|                 <a href="https://djalim.fr" class="header_button">Blog Perso</a>
 | ||
|             </div>
 | ||
|             <button
 | ||
|                 id="display_header_links"
 | ||
|                 onclick="toggle_all_header_links()"
 | ||
|             >
 | ||
|                 ▼
 | ||
|             </button>
 | ||
|         </header>
 | ||
| 
 | ||
|         <main>
 | ||
|             <h1>SIMAILA Djalim</h1>
 | ||
|             <h2>Developper, Sys-admin</h2>
 | ||
|             <br />
 | ||
|             <h2>Contact</h2>
 | ||
|             <p>
 | ||
|                 Mail :
 | ||
|                 <a href="mailto:djalim.simaila@etu.univ-amu.fr"
 | ||
|                     >djalim.simaila@etu.univ-amu.fr</a
 | ||
|                 >
 | ||
|             </p>
 | ||
|             <br />
 | ||
|             <a class="header_button" href="/static/CV_2025.pdf"
 | ||
|                 >CV format pdf</a
 | ||
|             >
 | ||
|             <h2>Formation</h2>
 | ||
|             <ul>
 | ||
|                 <li>Bac : (2021) Bac General NSI_MATH</li>
 | ||
|                 <li>
 | ||
|                     BUT Info Aix : (2024) BUT informatique :Conception
 | ||
|                     d’applications
 | ||
|                 </li>
 | ||
|                 <li>
 | ||
|                     Polytech Marseille : (2024-2027) Cycle ingenieur
 | ||
|                     informatique
 | ||
|                 </li>
 | ||
|             </ul>
 | ||
|             <br />
 | ||
|             <h2>Experiences</h2>
 | ||
|             <ul>
 | ||
|                 <li>
 | ||
|                     Stage : (2018) DOSI -IUT Digne-les-Bains : Administrateur
 | ||
|                     réseaux et systèmes
 | ||
|                 </li>
 | ||
|                 <li>
 | ||
|                     Stage : (2019) CYBERCAFE-Games Digne-les-Bains : Assemblage
 | ||
|                     d'ordinateurs
 | ||
|                 </li>
 | ||
|                 <li>
 | ||
|                     Stage : (2023) INRAE - Le Tholonet : Développement de
 | ||
|                     logiciel d’aide à la recherche
 | ||
|                 </li>
 | ||
|                 <li>
 | ||
|                     Stage : (2024) LPL - Aix-en-Provence : Développement
 | ||
|                     d’application mobile d’aide a la lecture
 | ||
|                 </li>
 | ||
|                 <li>
 | ||
|                     Freelance : (2024) SyntaxSoft - CEO : Développement de
 | ||
|                     logiciels
 | ||
|                 </li>
 | ||
|             </ul>
 | ||
|         </main>
 | ||
| 
 | ||
|         <footer>
 | ||
|             <p>
 | ||
|                 Fait par Djalim Simaila et sa haine de l'HTML, CSS, mais pas du
 | ||
|                 JavaScript ♥️
 | ||
|             </p>
 | ||
|             <p>©2025</p>
 | ||
|         </footer>
 | ||
|     </body>
 | ||
| </html>
 |