Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</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"> Ihr Vorname: <input type="text" name="first_name" /> Ihr Name: <input type="text" name="last_name" /> E-Mail-Adresse eingeben: <input type="email" name="user_email" /> <input type="submit" value="Absenden" /> </form> </body> </html>