All checks were successful
DEPLOY / deploy (push) Successful in 7s
feat: add new project pages for Crazy Space, Pokemon Kreye edition, Pycord, and others fix: update project descriptions for clarity and accuracy style: format JavaScript code for better readability and consistency
110 lines
3.8 KiB
HTML
110 lines
3.8 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>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 groceery 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>
|
|
|
|
<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/httpserver.html" class="box project">
|
|
<h2>Simple Http server</h2>
|
|
<p>A work in progress lightweight HTTP server made in C++</p>
|
|
</a>
|
|
<a href="/projects/clipsync.html" class="box project">
|
|
<h2>ClipSync</h2>
|
|
<p>
|
|
A linux deamon and an android app to sync clipboard beteen
|
|
devices
|
|
</p>
|
|
</a>
|
|
<a href="/projects/truthinquiry.html" class="box project">
|
|
<h2>TruthInquiry</h2>
|
|
<p>
|
|
A serious game made in Flask about facial expression and a
|
|
murder
|
|
</p>
|
|
</a>
|
|
<a href="/projects/retrodb.html" class="box project">
|
|
<h2>The Great Retro library</h2>
|
|
<p>
|
|
A website where you can play all your favorites retro games
|
|
</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>
|