First element in Head. For html 5 use: (!DOCTYPE html)
BackTo add comments use: (!-- Comment Goes Here --)
A global attribute, it is used to identify something to be styled by css.
(p id="pullquote")
Also, Java script can use the id attribute to function on that particular section of code.
A global attribute, it is used to indicate a section of code that is to conform to a specific css style.
(p class="important") This would conform to the css style named "important"
Multiple css styles can be applied in the same class tag by putting a space between them.
(p class= "important red") This would conform to the css styles named important and red.
Block elements always start on a new line. They include (h1), (p), (ul), (li).
BackInline elements can occure within a line. Examples include: (b), (em), (i), (img).
Back .Grouping Block Elements requires the(div) tag. Div tags are modified with CSS through id and class attributes.
(div id="div ID here" class="class info here")
Comments should be placed after the closing div tag to discribe the div.
(!-- Div Name --)
Grouping elements inline requires the span tag.
Some things need (span class="Bold")Special Attention.(span)
Some things need BoldSpecial Attention.
Span also conexts with CSS.
Iframe is a seperate window cut into page.
(iframe
src="http://www.portlingrad.com"
width="450"
height="350"
frameborder="5"
scrolling="no")
(/iframe)
Located in head, gives search engines info about page.
Defined through attributes.