site-perso-poly/projects.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

74 lines
2.1 KiB
HTML

<!doctype html>
<html lang="fr">
<head>
<title>Projects</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>Mes TPS</h1>
</div>
<a href="/TP3.html" class="box project">
<h2>TP3</h2>
<p>Lorem Ipsum</p>
</a>
<a href="/TP4.html" class="box project">
<h2>TP4</h2>
<p>Lorem Ipsum</p>
</a>
<a href="/TP5.html" class="box project">
<h2>TP5</h2>
<p>Lorem Ipsum</p>
</a>
<a href="/TP6.html" class="box project">
<h2>TP6</h2>
<p>Lorem Ipsum</p>
</a>
<a href="/blocs.html" class="box project">
<h2>Blocs flexbox</h2>
<p>Lorem Ipsum</p>
</a>
<div id="title">
<h1>Mes projets</h1>
</div>
<a href="/TP6.html" class="box project">
<h2>TP6</h2>
<p>Lorem Ipsum</p>
</a>
</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>