Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> input { font-size: 16 px; } input:focus { font-size: 16px; } @media screen and (-webkit-min-device-pixel-ratio: 0) { select, textarea, input { font-size: 16px; } } @media screen and (-webkit-min-device-pixel-ratio: 0) { select:focus, textarea:focus, input:focus { font-size: 16px; } } </style> </head> <body> <form action="getform.php" method="get"> Votre Prénom: <input type="text" name="first_name" /> Votre Nom: <input type="text" name="last_name" /> Entrer Votre E-Mail: <input type="email" name="user_email" /> <input type="submit" value="Envoyer" /> </form> </body> </html>