Answers for "what is the difference between XHTMLand HTML"

2

differences between html and xhtml

In HTML, you can do this:
<meta charset="UTF-8"> and <meta charset="UTF-8" />
In XHTML you have to do this:
<meta charset="UTF-8" />
You can also do this in XHTML:
<custom-tag />
but you can't in HTML.
Posted by: Guest on September-30-2020

Code answers related to "what is the difference between XHTMLand HTML"

Browse Popular Code Answers by Language