+ 1
Is it not possible to write '<html>' or any tag or element in paragraph as text, with greater and smaller sign.?
2 Réponses
+ 4
'<', '>' and some other characters aren't less or more safe in an html document... It's obvious for few character (as the angular brackets which have special meaning in an html document), a few less for others... to 'escape' these special characters, Html provide 'html entities', which are of the form:
&name;
The '&' is used as a maker to specify that an html entity name is starting until the next semi colon (;)...
So the next obviously very unsafe character is the '&', wich need to be safe write under it html entities form: &
Anyway, html entities offer a way to write non easily/quickly typable character on a keyboard (such as specific char code page of utf-8) for a lot of most and less most used symbols..
https://dev.w3.org/html5/html-author/charref
https://www.freeformatter.com/html-entities.html