Horje

Full Example of HTML textarea

The textarea element defines a multi-line input field.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

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

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

</body>
</html>

Output should be:

Full Example of HTML textarea




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Form Elements
Uploaded by:
Admin