Q10. Ananya wants to include a password field in her form. Help her by specifying the code.
Answers
Answered by
5
Answer:
The answer is:
Explanation:
<input type="password">
<textarea rows = "5" name = "textarea"> are the correct answer.
Following are the code in HTML language is given below
html>
<head> </head>
<body>
<form method="post" action="" >
<label>Password:</label>
<input type="password"><br>
<label>Address:</label>
<textarea rows = "5" name = "textarea">
</textarea>
</form>
</body>
</html>
Output:
Following are the attachment of output
Description of the code:
We used <input type="password"> for password field in her form.
we used <textarea rows = "5" name = "textarea"> </textarea> tag for multiple lines text in the web page.
Please mark me as brainliest.
Similar questions