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 eleent --> <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 and Block Level Tags
⇒⇒HTML Tutorials
2017-02-20, 860👍, 0💬
Popular Posts:
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...