I am trying to make a table that contains HTML tags, but when I enter an HTML tag it is recognized and it does not appear.
<table border="1">
<tr>
<td><html></td>
</tr>
</table>
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.
Any of the HTML tags that are allowed to be placed within the body-element of an HTML-page can be placed within a TD as well, but you cannot have more than one HTML-element in the page.
For example, this would be allowed:
However, if you want to show the text <HTML> in your table, then you would have to use
<and>instead of<and>, like this<HTML>otherwise the browser would try to parse it as HTML instead of printing it as text.