site-perso-poly/index.html
Djalim Simaila a8b24deb12
All checks were successful
DEPLOY / deploy (push) Successful in 8s
feat(CV.html): add a new CV page to showcase personal information and experience
feat(blocs.html): create a new page demonstrating flexbox layout with colored blocks
refactor(HTML files): replace <div> with <main> for semantic structure in multiple HTML files
fix(index.html): correct script tag syntax for utils.js to ensure proper loading
feat(TP6.js): enhance spin simulation with input validation and reporting functionality
style(static/style.css): improve overall styling and layout consistency across pages
2025-02-23 01:16:58 +01:00

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="surprise.html" class="header_button">Surprise :)</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>