printing "<html>" using html
Try doing:
<html>
Special characters in HTML, such as '<', '>', '"' and '&' can be printed using the following format:
&name;
where name would be replaced by a character name. The most common would then be
< = < (less than)
> = > (greater than)
& = & (ampersand)
" = " (double quote)
So to write <html> you would write in HTML:
<html>
Use HTML character references:
<html>
Should output
<html>