WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Rejected HTML Doctype Fri Jul 30, 2010 12:56 am

Guest


Guest
Hello guys Smile
I was thinking that many of you wonder what a Doctype is.So i decided to make a useful tutorial telling what a doctype is,what types of doctype are in the net and how we use it.Lets begin Smile .

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body>
The website's main text
</body>
</html>

What we quote above is the main structure of an HTML document(yes i know i havent included style & head tags so dont get crazy Suspect ).The first thing we see is the Doctype.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



So,what is a Doctype? Neutral

The Doctype is an HTML Declaration that informs browsers what type and version of markup language your page is written in.However,a Doctype is not an HTML tag.The Declaration refers to a Document Type Definition (DTD). The DTD specifies the rules for the markup language, so that the browsers can render the content correctly.



What are the available Doctypes? Neutral

There are 3 types of Doctypes:

* STRICT
* TRANSITIONAL
* FRAMESET

They are the following:



HTML 4.01 Strict
This DTD contains all HTML elements and attributes, but does NOT INCLUDE presentational or deprecated elements (like font). Framesets are not allowed. Cool
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">


HTML 4.01 Transitional
This DTD contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like font). Framesets are not allowed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


HTML 4.01 Frameset
This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset content. Smile
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">




XHTML 1.0 Strict
This DTD contains all HTML elements and attributes, but does NOT INCLUDE presentational or deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">



XHTML 1.0 Transitional
This DTD contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML. Smile
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

XHTML 1.0 Frameset
This DTD is equal to XHTML 1.0 Transitional, but allows the use of frameset content.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">



XHTML 1.1
This DTD is equal to XHTML 1.0 Strict, but allows you to add modules (for example to provide ruby support for East-Asian languages). Smile
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


HTML 5
HTML 5 also comes with a brand new and more simple Doctype: Smile
<!DOCTYPE HTML>

Hope you found my tutorial useful Wink

2Rejected Re: HTML Doctype Fri Jul 30, 2010 2:36 am

RockerMan

RockerMan
Technician
Technician
There is already a tutorial about this, two of the same basicly.

http://www.graphics-post.com/

3Rejected Re: HTML Doctype Fri Jul 30, 2010 2:37 am

Guest


Guest
where?i used search before posting it but didnt find anything Neutral

4Rejected Re: HTML Doctype Fri Jul 30, 2010 2:40 am

RockerMan

RockerMan
Technician
Technician
My bad, there's only one. But I done a tutorial on something simmilar....
http://www.webartzforum.com/tutorials-f7/what-doctype-to-use-t1207.htm

http://www.graphics-post.com/

5Rejected Re: HTML Doctype Sun Aug 01, 2010 3:12 pm

Joel

Joel
Registered Member
Registered Member
Love it. Great job Nick!

http://www.advertisehotspot.info/

6Rejected Re: HTML Doctype Sun Aug 01, 2010 7:24 pm

verrell123

verrell123
Registered Member
Registered Member
Yea great tutorial buddy

http://www.freshartz.co.cc/

7Rejected Re: HTML Doctype Wed Aug 04, 2010 5:00 pm

ankillien

ankillien
Administrator
Administrator
Similar tutorial has already been posted and accepted so I'll reject this one.

Tutorial Rejected

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum