Term
|
Definition
Even though the HTML tag always starts a web page, dont forget that before the HTML tag you must have the DOCTYPE and everything else in your page is the same |
|
|
Term
|
Definition
only the head and body tags can go directly inside the html element. everything else must be either in the head or in the body tag |
|
|
Term
|
Definition
you must always give your head a title element if you do not the web page will not be compliant. only title, meta, and style tags should go inside the head tag. |
|
|
Term
|
Definition
Only block elements are allowed directly inside the body element. all inline elements must be inside a block element before they can go in the body element |
|
|
Term
|
Definition
You can only put text and other inline elements in inline elements. you cant put a block element in an inline element |
|
|
Term
|
Definition
You cant put block elements in the p element. however you can put all the inline elements that you want inside the p element. |
|
|
Term
|
Definition
Only the LI tag is allowed in the UL and OL elements |
|
|
Term
|
Definition
you can put whatever you want in an LI element,( block elements, inline elements,test). |
|
|
Term
|
Definition
You can only put block elements directly inside the Blockquote tag |
|
|
Term
|
Definition
never nest an A element inside another A element. Empty elements provide no way to nest other inline elements within them |
|
|