I want to write </Hello (with a bracket at the end), but HTML thinks it is a tag. How do I fix this?
I want to write </Hello (with a bracket at the end), but HTML thinks it is a tag. How do I fix this?
You need to use an HTML Escape for both:
<>This will give you:
</Hello>which will render in the browser as:
Other useful HTML Escapes include:
& => &" => "' => '< => <> => >[SPACE] => [NEWLINE] => Further Reading: