Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>Champ de recherche</h2> <p>La<strong>input type="search"</strong>est utilisé pour les champs de recherche (se comporte comme un champ de texte ordinaire) :</p> <form action="https://www.w3schools.com/action_page.php"> <label for="gsearch">Rechercher sur Google :</label> <input type="search" id="gsearch" name="gsearch"> <input type="submit" value="Submit"> </form> </body> </html>