how to write tags as content not as function?
I tried to save my lessons on HTML in a simple web. some of the texts contain tags that i need to show up on my web. but in the code playground the tags always be read as functions so they turn red. i need them to stay white to come out after i press Run button. example i wrote this in the code room <p> Tables are defined by using the <table> tag. Tables are divided into table rows with the <tr> tag. Table rows are divided into table columns (table data) with the <td> tag. <br/>A border can be added using the border attribute</p> but i got this in the output room Tables are defined by using the tag. Tables are divided into table rows with the tag. Table rows are divided into table columns (table data) with the tag. A border can be added using the border attribute i want to have <table>, <tr>, <td>, and <br/> to show up in the output not executed. help me please.