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, 773👍, 0💬
Popular Posts:
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
Can You Specify the "new line" Character in Single-Quoted Strings? You can not specify the "new line...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
Where is API Management Service on my Azure Portal? If your IT department has signed up for an Azure...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...