web devlopment

How to show HTML code inside HTML without Rendering

We can show html inside html by using using the html entity ‘<‘ as ‘&lt;’ and the ‘>’ as ‘&gt;’ Normally we use like this in html . <h1> This is H1 tag </h1> But it the result renders html and shows like this This is h1 tag So will We will use this To […]