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, ∼1966🔥, 0💬
Popular Posts:
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...