multiline input type is code example

Example 1: html create a multi-line text input

<html>
 <head>
   <title>Textarea Elements</title>
 </head>
 <body>
   <form>
     <label for="multiLineInput"> <!-- Add the label if you want -->
       <p>This is an input element that can include new lines:</p>
       <textarea rows="5" cols="50" id="multiLineInput"></textarea>
     </label> 
     <!-- rows for length, cols for width. Both aren't required -->
   </form>
 </body>
</html>

Example 2: multilone input html

use textarea to take multiline input
<textarea></textarea>
use /n to differentiate between lines

Tags:

Html Example