All in one forum  - Applications | Games | E-Books | Music, Movies & Videos | Mobile Stuff | Live Discussions | Webmaster Stuff | Many More | Community to Hang Out and Stick to
Search Today's Posts Mark Forums Read

Go Back   Home > Tutorial Section > Programming > HTML Tips and Tricks
Reload this Page Notes for HTML
Forgot Password? Join Us!
HTML Tips and Tricks Post your HTML Related tips and tricks here

Notices
Your link here Your link here Your link here Your link here Your link here

Your Ad Here


Rate This Thread - Notes for HTML.

Post New Thread Reply
Bookmarks
 
LinkBack Thread Tools Display Modes
Old 04-15-2008, 04:17 PM   #8 (permalink)
 
KoOL's Avatar
 
User Info
Join Date: Oct 2007
Location: In You Mind
Age: 26
Achievements Posts: 10,299
Casino Cash: $1072020

Total Points: 236,852,801,738.43
Donate

Reputation: 92643
KoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond repute


Awards Showcase
Administrator Of the Month Of Jan 
Total Awards: 1
HTML <!DOCTYPE> tag

Definition and Usage

The <!DOCTYPE> declaration is the very first thing in your document, before the <html> tag. This tag tells the browser which HTML or XHTML specification the document uses.
Tips and Notes

Note: The <!DOCTYPE> tag does not have an end tag!
HTML

HTML 4.01 specifies three document types: Strict, Transitional, and Frameset.
HTML Strict DTD

Use this when you want clean markup, free of presentational clutter. Use this together with Cascading Style Sheets (CSS):



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> HTML Transitional DTD

The Transitional DTD includes presentation attributes and elements that W3C expects to move to a style sheet. Use this when you need to use HTML's presentational features because your readers don't have browsers that support Cascading Style Sheets (CSS):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> Frameset DTD

The Frameset DTD should be used for documents with frames. The Frameset DTD is equal to the Transitional DTD except for the frameset element replaces the body element:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
XHTML

XHTML 1.0 specifies three XML document types: Strict, Transitional, and Frameset.
XHTML Strict DTD

Use this DTD when you want clean markup, free of presentational clutter. Use this together with Cascading Style Sheets (CSS):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> XHTML Transitional DTD

Use this DTD when you need to use XHTML's presentational features because your readers don't have browsers that support Cascading Style Sheets (CSS):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> XHTML Frameset DTD

Use this DTD when you want to use frames!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> To check that you have written a valid XHTML document with a correct DTD, you can link your XHTML page to an XHTML validator.
Attributes: NONE


For Download Links U need to Press Thanks Button
My Goal 2: (Complete 10000)

Please don't PM me For Posts, Request and Not Working Threads. Use Button.
KoOL is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Click here to Donate to remove the Adverts.
Your Ad Here
Old 04-15-2008, 04:17 PM   #9 (permalink)
 
KoOL's Avatar
 
User Info
Join Date: Oct 2007
Location: In You Mind
Age: 26
Achievements Posts: 10,299
Casino Cash: $1072020

Total Points: 236,852,801,738.43
Donate

Reputation: 92643
KoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond repute


Awards Showcase
Administrator Of the Month Of Jan 
Total Awards: 1
HTML <a> tag

Definition and Usage

The <a> tag defines an anchor. An anchor can be used in two ways:
  1. To create a link to another document by using the href attribute
  2. To create a bookmark inside a document, by using the name or id attribute
Differences Between HTML and XHTML

NONE
Tips and Notes

Note: A linked page is normally displayed in the current browser window, unless you specify another target.


For Download Links U need to Press Thanks Button
My Goal 2: (Complete 10000)

Please don't PM me For Posts, Request and Not Working Threads. Use Button.
KoOL is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-15-2008, 04:18 PM   #10 (permalink)
 
KoOL's Avatar
 
User Info
Join Date: Oct 2007
Location: In You Mind
Age: 26
Achievements Posts: 10,299
Casino Cash: $1072020

Total Points: 236,852,801,738.43
Donate

Reputation: 92643
KoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond repute


Awards Showcase
Administrator Of the Month Of Jan 
Total Awards: 1
HTML <tt> <i> <b> <big> <small> tags

Definition and Usage

The following elements are all font style elements. They are not deprecated, but it is possible to achieve richer effects using style sheets.
<tt> Renders as teletype or mono spaced text <i> Renders as italic text <b> Renders as bold text <big> Renders as bigger text <small> Renders as smaller text
Differences Between HTML and XHTML

NONE
Example

Source Output <tt>Teletype text</tt><br />
<i>Italic text</i><br />
<b>Bold text</b><br />
<big>Big text</big><br />
<small>Small text</small><br /> Teletype text
Italic text
Bold text
Big text
Small text


For Download Links U need to Press Thanks Button
My Goal 2: (Complete 10000)

Please don't PM me For Posts, Request and Not Working Threads. Use Button.
KoOL is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Click here to Donate to remove the Adverts.
Your Ad Here
Old 04-15-2008, 04:19 PM   #11 (permalink)
 
KoOL's Avatar
 
User Info
Join Date: Oct 2007
Location: In You Mind
Age: 26
Achievements Posts: 10,299
Casino Cash: $1072020

Total Points: 236,852,801,738.43
Donate

Reputation: 92643
KoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond reputeKoOL has a reputation beyond repute


Awards Showcase
Administrator Of the Month Of Jan 
Total Awards: 1
HTML <font> tag

Definition and Usage

The <font> tag specifies the font face, font size, and font color of text.
Differences Between HTML and XHTML

The font element was deprecated in HTML 4.01.
The font element is not supported in XHTML 1.0 Strict DTD.
Tips and Notes

Tip: Use styles (instead of the <font> tag) to define the font face, font size, and font color of text.
Example

Source Output <font size="3" color="red">
This is some text!
</font>
<font size="1" color="blue">
This is some text!
</font>
<font face="arial" color="red">
This is some text!
</font> This is some text! This is some text! This is some text!
Optional Attributes

DTD indicates in which DTD the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.
Attribute Value Description DTD color rgb(x,x,x)
#xxxxxx
colorname Defines the color of the text in the font element. Deprecated. Use styles instead TF face list_of_fontnames Defines the font of the text in the font element. Deprecated. Use styles instead TF size A number from 1 to 7.
If basefont is specified you can specify a number from -6 to 6 Defines the size of the text in the font element. Deprecated. Use styles instead TF


For Download Links U need to Press Thanks Button
My Goal 2: (Complete 10000)

Please don't PM me For Posts, Request and Not Working Threads. Use Button.
KoOL is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2008, 01:13 PM   #12 (permalink)
 
User Info
Join Date: Feb 2008
Age: 17
Achievements Posts: 3
Casino Cash: $400

Total Points: 310.08
Donate

Reputation: 10
ansuman is on a distinguished road


w3schools s best for little bit knowledge
ansuman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply
Click here to Donate to remove the Adverts.
Your Ad Here
Post New Thread Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
MyScript Notes 2.1.2.2 KoOL Appz Zone 0 12-06-2007 05:49 PM
MyScript Notes 2.1.2.2 KoOL Appz Zone 0 11-19-2007 04:31 PM
My Notes Keeper 1.8.2.828 ijhtio Appz Zone 0 11-14-2007 03:10 PM
My Notes Keeper.v1.8.1 PaNkAJ Appz Zone 0 10-17-2007 10:21 AM
My Notes Keeper 1.8.1 KoOL Appz Zone 0 10-16-2007 10:56 AM



Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
vBulletin Skin developed by: vBStyles

RapidShare Links PhazeDDL Warez
PhazeDDL Warez