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, ∼1624🔥, 0💬
Popular Posts:
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...