mirror of
https://github.com/allan-cff/strava-free-year-in-sport.git
synced 2026-01-18 16:47:35 +01:00
78 lines
2.1 KiB
HTML
78 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Performances</title>
|
|
<link rel="stylesheet" href="./css/style.css" type="text/css">
|
|
<link rel="stylesheet" href="./css/performances.css" type="text/css">
|
|
<script src="performances.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="./images/strava-logo.svg" alt="Logo Strava">
|
|
<p>#YEARINSPORT</p>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="titre">
|
|
<h1>RÉUSSITES</h1>
|
|
</div>
|
|
|
|
<section class="record">
|
|
<img src="./images/haut-medaille.svg" id="haut-medaille" alt="Haut médaille">
|
|
<div class="medaille">
|
|
<p>RECORDS PERSONNELS</p>
|
|
<p class="nombre-sm nb-records">0</p>
|
|
<img src="./images/pr.svg" alt="Icône PR">
|
|
</div>
|
|
<img>
|
|
</section>
|
|
|
|
<div class="titre">
|
|
<h1>KUDOS</h1>
|
|
</div>
|
|
|
|
<section id="kudos">
|
|
<div>
|
|
<h2>Reçus</h2>
|
|
<p class="nombre-md nb-kudos">0</p>
|
|
</div>
|
|
<div id="most-kudoed">
|
|
<h2>Maximum</h2>
|
|
<p class="nombre-md nb-kudos">0</p>
|
|
<p class="texte-kudos">no data</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="titre">
|
|
<h1>EVEREST</h1>
|
|
</div>
|
|
|
|
<section id="everest">
|
|
<p>Pour rappel, l'Everest fait 8.848m de haut.</p>
|
|
<div>
|
|
<p class="nombre-md">0</p>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="fleche fleche-gauche">
|
|
<a href="fastest.html">
|
|
<img src="./images/fleche-gauche.svg" alt="Flèche vers la gauche">
|
|
</a>
|
|
</div>
|
|
<div class="pagination">
|
|
<p>6/9</p>
|
|
</div>
|
|
<div class="fleche fleche-droite">
|
|
<a href="pictures.html">
|
|
<img src="./images/fleche-droite.svg" alt="Flèche vers la droite">
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html> |