How to create a multi-line text entry in form design with an example program
(use the facilities of the <INPUT> and <TEXTAREA> tags to prompt the user by
including placeholder information in the text fields and text area.)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Textarea</title>
</head>
<body>
<textarea name="textarea" rows="10" cols="50">
Write something here
</textarea>
</body>
</html>
Comments
Leave a comment