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, ∼3376🔥, 0💬
Popular Posts:
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...