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.
66 lines
2.1 KiB
HTML
66 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<title>TP6</title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<script src="/static/js/utils.js" defer></script>
|
|
<script src="/static/js/TP6.js" defer></script>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
|
|
/>
|
|
</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 id="setupGame">
|
|
<p>how many spins do you want to simulate</p>
|
|
<input
|
|
id="maxSpinInput"
|
|
type="number"
|
|
max="1000000"
|
|
min="1"
|
|
value="10000"
|
|
/>
|
|
<button type="button" onclick="setupGame()">Start Spins</button>
|
|
</div>
|
|
<div>
|
|
<h2 id="currentSpin">Current spin</h2>
|
|
</div>
|
|
<div id="lastSpins"></div>
|
|
<p id="spinCounter"></p>
|
|
<div id="report">
|
|
<p id="nbq"></p>
|
|
<p id="winrate"></p>
|
|
<p id="winpercentage"></p>
|
|
<p id="gains"></p>
|
|
</div>
|
|
<a href="/static/rapport.pdf" class="header_button">Rapport</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>
|