Wrong | Correct |
---|---|
<p>This is a paragraph <p>This is another paragraph |
<p>This is a paragraph</p> <p>This is another paragraph</p> |
/>
.
Wrong | Correct |
---|---|
A break: <!-- Can't show. --> A horizontal rule: <hr> An image: <img src="happy.gif" alt="Happy face"> |
A break: <!-- Can't show. --> A horizontal rule: <hr /> An image: <img src="happy.gif" alt="Happy face" /> |
Wrong | Correct |
---|---|
<BODY> <P>This is a paragraph</P> </BODY> |
<body> <p>This is a paragraph</p> </body> |
<html>
root element.
All other elements can have sub elements.
Sub elements must be in pairs and nested within their parent element.
The basic document structure is
Wrong | Correct |
---|---|
<BODY> <P>This is a paragraph</P> </BODY> |
<html> <head> ... </head> <body> ... </body> </html> |