THE DIFFERENCE BETWEEN HTML AND HTMLX
last week i got to know about another version of html called htmlx and i'm going to be stating the difference between html and htmlx.
this is going to be quite short because the difference isn't much and it's quite easy to understand.
i will start by saying what html is again,html(hypertext markup language) is a standard markup language that gives structure to a webpage,tells the browser how to display text,images,videos,links,tables e.t.c.
now the difference between html and htmlx is that html is more forgiving,meaning even if you don't close some tags, the contents will still be displayed.Now that's where htmlx comes in,unlike html that is more forgiving,htmlx is strict,meaning if you skip a closing tag,the content will not be displayed.htmlx is meant to make the programmer follow the rules of building a webpage.
In summary:
html is more forgiving,lenient,beginner-friendly and error tolerant while htmlx is strict,ensures codes are correct and is error sensitive.