The symbols < and > are HTML character entities that represent the less than (<) and greater-than (>) signs, respectively.
These entites are used in HTML so that we can ensure that these symbols are shown in website exactly.
For example I want to show “<p>” in my website. I can write the html code like
<p> &It;p> this is a paragraph </p>
The rendered output will be a h1 containing:
<p> this is a paragraph