Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> input { font-size: 16 px; } input:focus{font-size:16px;} </style> </head> <body> <form action="getform.php" method="get"> Your Name: <input type="text" name="first_name" /> Your Surname: <input type="text" name="last_name" /> Enter Your E-Mail: <input type="email" name="user_email" /> <input type="submit" value="Submit" /> </form> </body> </html>