Filter (Advanced Search)
Downloads
0
Views
227
Video

Video is not available... Embedded is previous playlist.

Details

The <textarea> element defines a multi-line input field (a text area):

 

 

The rows attribute specifies the visible number of lines in a text area.

The cols attribute specifies the visible width of a text area.

This is how the HTML code above will be displayed in a browser:


<!DOCTYPE html>
<html>
<body>

<h2>Textarea</h2>
<p>The textarea element defines a multi-line input field.</p>

<form action="/php/textarea.php" method="post">
  <textarea name="message" rows="10" cols="30">The cat was playing in the garden.</textarea>
  <br><br>
  <input type="submit">
</form>

</body>
</html>



Ad