first commit

This commit is contained in:
2026-03-02 14:42:04 +01:00
commit 70a28837fe
29 changed files with 433 additions and 0 deletions

46
templates/NOTES.html Normal file
View File

@@ -0,0 +1,46 @@
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>NOTES</title>
</head>
<body>
<h1>NOTES</h1>
<h2>Jeux favoris</h2>
<p>#1.RIVALS</p>
<img src="{{ url_for('static', filename='img/rivals_logo.jpg') }}" alt="Logo Rivals" width="200">
<table>
<tbody>
<tr>
<td><p>favorite main weapon: SNIPER</p></td>
<td><p>favorite secondary: daggers</p></td>
</tr>
<tr>
<td><p>favorite mele: schyte/katana</p></td>
<td><p>favorite utility: war horn/satchels</p></td>
</tr>
</tbody>
</table>
<h2>#2.The Strongest Battlegrounds</h2>
<img src="{{ url_for('static', filename='img/tSB_logo.jpg') }}" alt="Logo TSB" width="200">
<h2>Phonk favoris</h2>
<table>
<tbody>
<tr>
<td><p><a href="https://youtu.be/orOgilmiL_4">NO BATIDÃO</a></p></td>
<td><p><a href="https://youtu.be/i_J7LVVcyoQ">MENTE MÁ</a></p></td>
<td><p><a href="https://youtu.be/P8jJr2dN1pk">AL NACER</a></p></td>
</tr>
<tr>
<td><p><a href="https://youtu.be/G8mfQ9rXiM4">PASSO BEM SOLTO</a></p></td>
<td><p><a href="https://youtu.be/sLWcq3FKNEc">MONTAGEM RUGADA</a></p></td>
<td><p><a href="https://youtu.be/UJF6ydJ2W34">MATADORA</a></p></td>
</tr>
</tbody>
</table>
<p><a href="{{ url_for('index') }}">Retour à l'accueil</a></p>
<p><a href="{{ url_for('heure') }}">Verifier l'heure</a></p>
<p><a href="{{ url_for('formulaire') }}">Aller au formulaire</a></p>
</body>
</html>