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; } label { display: inline-block; width: 110px; color: #777777; } input { padding: 5px 10px; } </style> </head> <body> <form action="/form/submit" method="post"> <div> <label for="name">Your name:</label> <input id="name" name="username" type="text" autofocus /> </div> <div> <label for="lastname">Your Last name:</label> <input id="lastname" name="lastname" type="text" /> </div> <input type="submit" value="Submit" /> </form> </body> </html>