<textarea> Tag in HTML 5

In this article I am going to explain about <textarea> tag in Html 5
  • 2214

Definition

The <Textarea>  tag use for hold large number of text and text render fix-with font. In other word <textarea> use for multi line text input control. The test area can be defined by rows and column attributes.

Browser that supports <textarea> tag

 Internet explorer, Mozilla firefox, Google chrome, Opera and Safari browsers.

Lets take an example of <textarea> tag

<html>
  <head>
    <textarea rows="5" cols="60">
     Hello friends. How are you and whats are you doing...........
    </textarea>
  </head>
</html>

Output

textarea.jpg

Further Readings

You may read more about HTML 5 Tags:  here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.