All checks were successful
		
		
	
	DEPLOY / deploy (push) Successful in 12s
				
			- Change "Surprise :)" link to "Vibe check" across multiple HTML files for consistency and clarity. - Add a new "about.html" page to provide information about the author. - Introduce a new "quizz.html" page for user interaction and engagement. - Create new project pages for "Lieutenant Champignon" and "Pong" to showcase additional projects. - Remove outdated project pages and links to streamline the project section. - Add new assets including images and PDFs to enhance content presentation. - Update JavaScript functions for form validation and score calculation in the quizz page. - Improve styling in CSS for better visual hierarchy and layout consistency.
		
			
				
	
	
		
			92 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="fr">
 | |
|     <head>
 | |
|         <title>Homepage</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>
 | |
|             <div class="title">
 | |
|                 <h1>I love commiting war crimes :)</h1>
 | |
|             </div>
 | |
| 
 | |
|             <div class="box horizontal warp-on-small-screen">
 | |
|                 <img
 | |
|                     src="/static/assets/images/mwa.jpg"
 | |
|                     alt="Moi"
 | |
|                     width="935"
 | |
|                     height="935"
 | |
|                     style="
 | |
|                         border-radius: 10px;
 | |
|                         max-width: 320px;
 | |
|                         max-height: 320px;
 | |
|                         width: auto;
 | |
|                         height: auto;
 | |
|                     "
 | |
|                 />
 | |
|                 <div>
 | |
|                     <p>
 | |
|                         Je m'appelle <b>Djalim</b>, j'ai 21 ans et je suis un
 | |
|                         developpeur et etudiant en BUT Informatique à Aix en
 | |
|                         Provence.
 | |
|                     </p>
 | |
|                     <p>
 | |
|                         Je suis passioné d'Informatique, je sais que c'est tres
 | |
|                         vague mais ça englobe tout ce que j'aime faire :
 | |
|                     </p>
 | |
|                     <ul>
 | |
|                         <li>
 | |
|                             <p style="display: inline">
 | |
|                                 Créer des logiciels (scripts, applications,
 | |
|                                 jeux, you name it, I do it)
 | |
|                             </p>
 | |
|                         </li>
 | |
|                         <li>
 | |
|                             <p style="display: inline">
 | |
|                                 Créer et configurer des serveurs/workstations
 | |
|                                 Linux (Debian, Ubuntu, Arch, Manjaro, Fedora,
 | |
|                                 CentOS, etc...)
 | |
|                             </p>
 | |
|                         </li>
 | |
|                         <li>
 | |
|                             <p style="display: inline">
 | |
|                                 Créer des api et des bases de données
 | |
|                             </p>
 | |
|                         </li>
 | |
|                     </ul>
 | |
|                     <p>
 | |
|                         Bref, je fais plein de trucs. Je suis aussi passioné par
 | |
|                         les mangas, les jeux vidéos et les animes.
 | |
|                     </p>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </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>
 |