Angle bracket (<) without triggering html code [duplicate]

Possible Duplicate:
printing “<html>” using html

How can I put the < symbol literally into html text without invoking html stuffs.


Solution 1:

Use "&lt;". Similarly, you can use "&gt;" for >, or "&amp;" for &.

These are called HTML "entities". You can learn more about them here

Solution 2:

Use &lt; for <.

Or &gt; for >.