Files
2022-12-30 21:40:16 +01:00

89 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Durée totale d'activité</title>
<script src="hours.js" defer></script>
<link rel="stylesheet" href="./css/style.css" type="text/css">
<link rel="stylesheet" href="./css/hours.css" type="text/css">
</head>
<body>
<header>
<img src="./images/strava-logo.svg" alt="Logo Strava">
<p>#YEARINSPORT</p>
</header>
<main>
<div class="titre">
<h1>NOMBRE D'HEURES D'ACTIVITÉS</h1>
</div>
<section id="heures">
<h2>HEURES</h2>
<p class="nombre-xxl">0</p>
</section>
<section id="calendrier">
<div>
<p>JAN</p>
</div>
<div>
<p>FÉV</p>
</div>
<div>
<p>MAR</p>
</div>
<div>
<p>AVR</p>
</div>
<div>
<p>MAI</p>
</div>
<div>
<p>JUIN</p>
</div>
<div>
<p>JUIL</p>
</div>
<div>
<p>AOÛT</p>
</div>
<div>
<p>SEP</p>
</div>
<div>
<p>OCT</p>
</div>
<div>
<p>NOV</p>
</div>
<div>
<p>DÉC</p>
</div>
</section>
<section id="comp-21">
<h2>DURÉE TOTALE EN 2021</h2>
<h2>0H</h2>
</section>
</main>
<footer>
<div class="fleche fleche-gauche">
<a href="days.html">
<img src="./images/fleche-gauche.svg" alt="Flèche vers la gauche">
</a>
</div>
<div class="pagination">
<p>3/9</p>
</div>
<div class="fleche fleche-droite">
<a href="totals.html">
<img src="./images/fleche-droite.svg" alt="Flèche vers la droite">
</a>
</div>
</footer>
</body>
</html>