<!doctype html>                                                         <!-- html5  -->
<html lang="fr">                                                        <!-- langue fr  -->
    
<head>
  <meta charset="utf-8">                                                <!-- encodage utf   -->
  <title>Graphique</title>                                              <!-- titre de la page -->
  <link rel="stylesheet" href="index.css">                              <!-- appelle de la page de déco  -->
  <script type="text/javascript" src="jquery.js"></script>              <!-- appelle de la librairie jquery -->
  <script type="text/javascript" src="highcharts.js"></script>          <!-- appelle de la librairie highcharts -->
  <script src="graph.js"></script>                                      <!-- appelle du graphique -->
  <script src="gray.js"></script>                                       <!-- appelle du thème pour le graphique -->
</head>

<body>
    <h1>Historique de la sonde DHT</h1> 
    
    <div id="conteneurGraph"></div>                                     <!-- contiendra le graphique  -->

</body>

</html>