Menu.html 872 Bytes
<!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>