How do I put a html code in a scrollbox so that...?

One simple way to do this is to put the code inside a text area. For example:

<textarea name=txtCode>

<html>
<body>
<h1>example of html code inside text area</h1>
</body>
</html>

</textarea>
 
Back
Top