All checks were successful
DEPLOY / deploy (push) Successful in 9s
This change enhances the user experience by providing a dedicated "About me" page and ensuring all links point to the correct HTML files, improving overall site navigation.
88 lines
3.2 KiB
HTML
88 lines
3.2 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">About me</a>
|
|
<a href="/quizz.html" 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="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 22 ans et je suis un
|
|
developpeur et etudiant à Polytech Marseille en cycle
|
|
informatique.
|
|
</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>
|