fork download
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Pharmacie TESKENE</title>
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <header>
  11. <h1>Pharmacie TESKENE</h1>
  12. <nav>
  13. <ul>
  14. <li><a href="
  15. <li><a href="#produits">Produits</a></li>
  16. <li><a href="
  17. <li><a href="#contact">Contact</a></li>
  18. </ul>
  19. </nav>
  20. </header>
  21. <main>
  22. <section id="accueil">
  23. <h2>Bienvenue à la pharmacie TESKENE</h2>
  24. <p>Nous sommes à votre disposition pour tous vos besoins en matière de santé.</p>
  25. </section>
  26. <section id="produits">
  27. <h2>Nos produits</h2>
  28. <ul>
  29. <li>Médicaments</li>
  30. <li>Produits de soins personnels</li>
  31. <li>Compléments alimentaires</li>
  32. </ul>
  33. </section>
  34. <section id="commandes">
  35. <h2>Commandes</h2>
  36. <form>
  37. <label for="nom">Nom :</label>
  38. <input type="text" id="nom" name="nom"><br><br>
  39. <label for="prenom">Prénom :</label>
  40. <input type="text" id="prenom" name="prenom"><br><br>
  41. <label for="produit">Produit :</label>
  42. <select id="produit" name="produit">
  43. <option value="medicaments">Médicaments</option>
  44. <option value="soins_personnels">Produits de soins personnels</option>
  45. <option value="complements_alimentaires">Compléments alimentaires</option>
  46. </select><br><br>
  47. <input type="submit" value="Commander">
  48. </form>
  49. </section>
  50. <section id="contact">
  51. <h2>Contact</h2>
  52. <p>Adresse : 123 rue de la santé, 75000 Paris</p>
  53. <p>Téléphone : 01 23 45 67 89</p>
  54. <p>Email : [contact@pharmacieteskene.com](mailto:contact@pharmacieteskene.com)</p>
  55. </section>
  56. </main>
  57. <footer>
  58. <p>&copy; 2023 Pharmacie TESKENE</p>
  59. </footer>
  60. </body>
  61. </html>
  62.  
Success #stdin #stdout 0.03s 25272KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pharmacie TESKENE</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <h1>Pharmacie TESKENE</h1>
        <nav>
            <ul>
                <li><a href="                          
                <li><a href="#produits">Produits</a></li>
                <li><a href="                              
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section id="accueil">
            <h2>Bienvenue à la pharmacie TESKENE</h2>
            <p>Nous sommes à votre disposition pour tous vos besoins en matière de santé.</p>
        </section>
        <section id="produits">
            <h2>Nos produits</h2>
            <ul>
                <li>Médicaments</li>
                <li>Produits de soins personnels</li>
                <li>Compléments alimentaires</li>
            </ul>
        </section>
        <section id="commandes">
            <h2>Commandes</h2>
            <form>
                <label for="nom">Nom :</label>
                <input type="text" id="nom" name="nom"><br><br>
                <label for="prenom">Prénom :</label>
                <input type="text" id="prenom" name="prenom"><br><br>
                <label for="produit">Produit :</label>
                <select id="produit" name="produit">
                    <option value="medicaments">Médicaments</option>
                    <option value="soins_personnels">Produits de soins personnels</option>
                    <option value="complements_alimentaires">Compléments alimentaires</option>
                </select><br><br>
                <input type="submit" value="Commander">
            </form>
        </section>
        <section id="contact">
            <h2>Contact</h2>
            <p>Adresse : 123 rue de la santé, 75000 Paris</p>
            <p>Téléphone : 01 23 45 67 89</p>
            <p>Email : [contact@pharmacieteskene.com](mailto:contact@pharmacieteskene.com)</p>
        </section>
    </main>
    <footer>
        <p>&copy; 2023 Pharmacie TESKENE</p>
    </footer>
</body>
</html>