I want to show this code like a text type in web page. i am using program language is PHP
<div>
<a href="js/index.html">Js</a></div>
<div><a href="php/index.php">PHP</a></div>
<div><a href="test/index.html">Test</a></div>
<input id="in" type="text">
<div class="">Off season <span id="out"></span> this</div>
<script src="js/assets/jquery.js"></script>
<script>
$("#in").keyup(function () {
var text = this.value;
$('#out').text(text);
})
</script>
</div>
<pre>and</pre>respectively. However, a more beautiful output might be achieved withCSS.