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
80 lines
2.7 KiB
HTML
80 lines
2.7 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<title>Crazy Space</title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<script src="/static/js/utils.js" defer></script>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
|
|
/>
|
|
<script language="javascript" defer>
|
|
function init() {
|
|
const iframe = document.getElementById("iframe");
|
|
const iframeContent = iframe.contentWindow.document;
|
|
iframeContent.body.getElementById("game").style.borderRadius =
|
|
"10px";
|
|
}
|
|
</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>
|
|
<h1>Pokemon : Kreye edition</h1>
|
|
<p>
|
|
Pokemon Kreye edtion is a Pokemon Fire Red rom hack made for my
|
|
friend nicknamed "Kreye".
|
|
<br />
|
|
The game is unfinished but we had a lot of fun making this game.
|
|
<br />
|
|
It is only shown for the technical prowess of making a rom hack.
|
|
</p>
|
|
<h1>
|
|
WARNING THIS GAME WAS MADE BY A TEENAGER AT THE TIME, THE HUMOR
|
|
IS GROSS
|
|
</h1>
|
|
<iframe
|
|
src="https://retrodb.djalim.fr/emulator?rom_id=1&console_core=gba"
|
|
style="
|
|
width: 600px;
|
|
height: 496px;
|
|
border: none;
|
|
& html body div div#game.ejs_parent {
|
|
border-radius: 10px;
|
|
}
|
|
"
|
|
id="iframe"
|
|
onload="init()"
|
|
allowfullscreen
|
|
title="Pokemon kreye edition player"
|
|
allow="web-share"
|
|
>
|
|
</iframe>
|
|
</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>
|