HTML <textarea> tag is used to create a multi-line text input field. It allows users enter large amounts of text, such as comments, descriptions, messages etc. Unlike the <input> tag, which is used for single-line text input, <textarea> supports multiple lines and provides scrollbars if the text exceeds the visible area.
HTML Textarea tag
Multi-line Input Allows users to enter and edit multiple lines of text.
HTML <textarea> Tag Attributes
HTML <textarea> Tag with Example
<form action="/submit" method="post"> <label for="comment">Comment</label> <textarea id="comment" name="comment" rows="4" cols="50"> </textarea> <input type="submit" value="Submit"> </form>
HTML <video> element is used to embed video content into a web page. The <audio> tag is su...