<textarea> ... </textarea>


حقل نصي متعدد الأسطر لإدخال النصوص الطويلة.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Inline CSS Textarea Example</title>

</head>

<body>

<form action="#" method="post" style="max-width: 500px; margin: 20px auto;">

<label for="comments" style="display: block; font-weight: bold; margin-bottom: 5px;">

Your Comments:

</label>

<textarea id="comments" name="comments" rows="5" placeholder="Enter your comments here" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;"></textarea>

</form>

</body>

</html>

Inline CSS Textarea Example