Skip to content
Snippets Groups Projects
index.html 735 B
Newer Older
  • Learn to ignore specific revisions
  • BOUDJEBBOUR MAYA p2312048's avatar
    BOUDJEBBOUR MAYA p2312048 committed
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Sleep and Steps Visualization</title>
        <link rel="stylesheet" href="style.css">
        <script src="https://d3js.org/d3.v7.min.js"></script>
    </head>
    <body>
        <h1>Comparison of Sleep Hours and Steps</h1>
    
        <select id="timeInterval">
            <option value="year">Année</option>
            <option value="month">Mois</option>
          </select>
          
          <select id="yearSelect">
            <!-- Remplir dynamiquement les années disponibles -->
          </select>
          
        <div id="visualization"></div>
    
        <script src="script.js"></script>
    </body>
    </html>