<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Text Area</title>
</head>
<body>
<textarea cols="5" rows="5"></textarea>
</body>
</html>
Definition:-
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Text Area</title>
</head>
<body>
<textarea cols="5" rows="5"></textarea>
</body>
</html>
Definition:-
TextArea
- This tag defines a multi-line text input control.
- A text area can hold an unlimited number of characters, and the text renders in a fixed-width font.
- The size of a textarea can be specified by the cols and rows attributes, or even better; through CSS' as height and width properties.
- Cols indicate textarea width and rows indicate its height.
HTML:-Textarea
Reviewed by Network security
on
April 30, 2019
Rating:
No comments: