Tools, FAQ, Tutorials:
Incorrect HTML 'body' Elements
What Is Wrong with My HTML "body" Elements?
✍: FYIcenter.com
If you are having trouble with your body elements, it could be caused by
one of the following common mistakes:
<!-- Text can not be used in body directly --> <body> Hello world! </body> <!-- "title" is not allowed in body element --> <body> <title>XHTML FAQ</title> </body> <!-- "img" is not a block level element --> <body> <img src="/images/fyi.gif" alt="FYI" /> </body> <!-- "p" element is missing closing tag --> <body> <p>Welcome to FYIcenter.com! </body> <!-- body element can not be empty --> <body> </body>
⇐ HTML 'body' Tag/Element - Document Body
2023-08-09, ∼1848🔥, 0💬
Popular Posts:
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub()...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...