The code I have currently produces a html page with with "ac" on it, what I want is to have literally what the value of the string is (I would type it out here but I'm having the same problem). In words, what I want is "a" then the less than symbol then "b" then the greater than symbol then "c".
Thanks
<!DOCTYPE html>
<html>
<body>
<p id="output"></p>
<script>
document.getElementById("output").innerHTML = "a<b>c"
</script>
</body>
</html>