HTML n CSS

08 Extra Markup

DocTypes

Comments

ID Attribute

Class Attribute

Block Elements

Inline Elements

Group Text n Block Elements

Gouping Text n Elements Inline

Iframes

Meta Data

Escape Characters

DocTypes

First element in Head. For html 5 use: (!DOCTYPE html)

Back

Comments

To add comments use: (!-- Comment Goes Here --)


Back

ID Attribute

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.

Back

Class Attribute

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.

Back

Block Elements

Block elements always start on a new line. They include (h1), (p), (ul), (li).

Back

Inline Elements

Inline elements can occure within a line. Examples include: (b), (em), (i), (img).

Back .

Group Text n Block elements

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 --)

Back

Gouping Text n Elements Inline

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.

Back

Iframes

Iframe is a seperate window cut into page.
(iframe
src="http://www.portlingrad.com"
width="450"
height="350"
frameborder="5"
scrolling="no")
(/iframe)


Back

Meta Data

Located in head, gives search engines info about page.
Defined through attributes.


(meta name="description"

content="Website desription for best SEO." /)

(meta name="keywords"

content="Best, words, for, SEO" /)

(meta name="robots"

content="nonfollow" don't add to serch="nonindex" /). This page but no children=n"o follow"

(metta="http-equiv="author"

content="Author Name" /)

(meta http-equiv="pragma"

content=cahe or no-cache /)

(meta http-equiv="expires"

content="Fri 04 Apr 201623:59:59 GMT" /) Back

Escape Characters

Back