I have an input where I take the value and sets it as text
Javascript:
OverSkrift.innerHTML = document.getElementById("textOver").value;
HTML
<div class="input over">
<a>Type</a>
<input type="text" value="ZEUS" id="textOver" />
</div>
However, when a user types in, let's say
<b>Hey</b>
It gets outputted like : Hey
So how do I disable this? Can I make it output it in plain text so that it gets outputted like: <b>Hey</b>
While writing this, I realised that I need something that does the same as stack overflow, when you put stuff in back ticks: ` `