1<html>
2 <head>
3 <title>Textarea Elements</title>
4 </head>
5 <body>
6 <form>
7 <label for="multiLineInput"> <!-- Add the label if you want -->
8 <p>This is an input element that can include new lines:</p>
9 <textarea rows="5" cols="50" id="multiLineInput"></textarea>
10 </label>
11 <!-- rows for length, cols for width. Both aren't required -->
12 </form>
13 </body>
14</html>
15