Tools, FAQ, Tutorials:
Smallest Valid XHTML5 Document
What is a Smallest Valid XHTML5 Document?
✍: FYIcenter.com
If you are interested to see the smallest, but valid, XHTML5 document, look at this one:
<?xml version="1.0" ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title>Hello</title></head><body><footer>World!</footer></body> </html>
Note that the "footer" element is a new markup element introduced in HTML5.
⇒ Validating XHTML5 Documents Online
2024-03-17, ∼2896🔥, 0💬
Popular Posts:
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...