CodeLab
Tutorials For Everyone
Run
<!DOCTYPE html> <html> <head> <title>HTML Form Text Input Control Example</title> </head> <body> <h3>HTML Form Text Input Control Example</h3> Please write your first and last name in separate boxes. <form action='/form-submit/'> <label for="first-name">First name:</label><br> <input type="text" id="first-name" name="first-name"><br> <label for="last-name">Last name:</label><br> <input type="text" id="last-name" name="last-name"><br> <input type="submit" id="submit" value='Submit'> </form> </body> </html>