Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div { margin-bottom: 10px; } 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="/form/submit" method="get"> <div> <label for="name">Your Name:</label> <input type="text" name="first_name" id="name" /> </div> <div> <label for="surname">Your Surname:</label> <input type="text" name="last_name" id="surname" /> </div> <div> <label for="email">Enter Your E-Mail:</label> <input type="email" name="user_email" id="email" /> </div> <input type="submit" value="Submit" /> </form> </body> </html>