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 "<
". Similarly, you can use ">
" for >, or "&
" for &.
These are called HTML "entities". You can learn more about them here
Solution 2:
Use <
for <.
Or >
for >.