<textarea> HTML Tag

In this article we will discuss about how to use textarea tag in HTML
  • 1538

The textarea tag in HTML is used for allow the user to input the text over multiple rows. It comes under <form> tag in HTML.

HTML Code:

<html>

<head>

    <title>This is my first web page</title>

</head>

<body>

   <form>

Enter Name<input type="text"></input><br><br><br>

Enter Age<input type="text"></input><br><br><br>

Enter Address:<Textarea rows="6" cols="15"></textarea>

</form>

</body>

</html> 

Output:

 tableoutput.jpg

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here
© 2020 DotNetHeaven. All rights reserved.