What is the correct way to write the HTML break tag "<br>"
in JavaScript without it causing a line break? I want the tag to be displayed as text. For example, "the break tag in html is ..."
See below for an example of what I am looking for.
<script type = "text/javascript">
document.write('"<br>"');
</script>