Blame view

pageHTML/Menu.html 872 Bytes
d2bf4d00   Justine Senellart   partie applicatio...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <!DOCTYPE html>
  <html lang="en">
  <head>
      <meta charset="UTF-8">
      <link rel="stylesheet" href="Menu.css" />
      <title>Menu Veilleuse connectée</title>
  </head>
  <body>
  <h1 class = "introduction">Bienvenue sur le menu de votre veilleuse connectée</h1>
  
  <ul class = "choix">
      <li><h2><a href="intensite.html">Changement de l'intensité</a></h2></li>
      <li><h2><a href = "couleur.html">Changement de la couleur</a></h2></li>
      <li><h2><a href = "mode.html">Sélection du mode</a></h2></li>
  </ul>
  <h4 classe = "etat">Etat de la veilleuse</h4>
  <div class="onoffswitch">
      <input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch" checked>
      <label class="onoffswitch-label" for="myonoffswitch">
          <span class="onoffswitch-inner"></span>
          <span class="onoffswitch-switch"></span>
      </label>
  </div>
  </body>
  </html>