I have this code:
<textarea><b>test</b></textrea>
It displays the raw HTML code. Instead, I would like it to simply display bold text.
How can I achieve that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want the textarea to display bold text, you can do that via css style attribute:
This makes the textarea display all text bold, as it would be in
<b>text</b>.However, this affects all text in the textarea. There is no way to show only one word in bold.