This is the source code from the HTML5 Tutorial For Beginners. In this source code, you are going to learn about HTML5 – Multi-line Input Field.
Source Code:
<!DOCTYPE html> <html> <head> <title> My first web page </title> </head> <body> // form tag is use to create form <form> First Name:<br /> <input type="text" name="firstname"><br /> Last Name:<br /> <input type="text" name="lastname"><br /> Comments:<br /> <textarea rows="5" cols="20"></textarea><br /> <input type="Submit" value="Submit"><br /> </form> </body> </html>