site-perso-poly/projects.html
2025-02-23 20:36:49 +01:00

104 lines
3.4 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">About me</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>Mes TPS</h1>
</div>
<a href="/TP3.html" class="box project">
<h2>TP3</h2>
<p>Simple game about finding numbers</p>
</a>
<a href="/TP4.html" class="box project">
<h2>TP4</h2>
<p>Check out a random Pokemon from my perfect team</p>
</a>
<a href="/TP5.html" class="box project">
<h2>TP5</h2>
<p>A grocery list that is stored in your browser</p>
</a>
<a href="/TP6.html" class="box project">
<h2>TP6</h2>
<p>Simulate a roulette game</p>
</a>
<a href="/blocs.html" class="box project">
<h2>Blocs flexbox</h2>
<p>A flexbox example</p>
</a>
<a href="/projects/snake.html" class="box project">
<h2>Snake</h2>
<p>A snake game</p>
</a>
<a href="/projects/pong.html" class="box project">
<h2>Pong</h2>
<p>A pong game</p>
</a>
<hr />
<div id="title">
<h1>Mes projets</h1>
</div>
<a href="/projects/crazyspace.html" class="box project">
<h2>Crazy Space</h2>
<p>A Space shooter game for a programing contest</p>
</a>
<a href="/projects/pokemonkreteed.html" class="box project">
<h2>Pokemon Kreye edition</h2>
<p>An unfinished rom hack for a friend named Kreye</p>
</a>
<a href="/projects/pycord.html" class="box project">
<h2>Pycord</h2>
<p>A discord look-alike made in python</p>
</a>
<a href="/projects/superspaceinvader.html" class="box project">
<h2>Super Space Invader</h2>
<p>A space invader made in C</p> </a
><a href="/projects/lieutenantchampignon.html" class="box project">
<h2>Lieutenant Champignon</h2>
<p>A Captain Toad clone made in unity in five days</p>
</a>
<a href="https://git.djalim.fr/DjalimSimaila" class="box project">
<h2>More Projects</h2>
</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>