Sign in to follow this  
Cornel Iulian

Ce înseamna și ce face DOCTYPE ?

1 post in this topic

În momentul în care intrați pe o pagină web, browser-ul citește pagina, iar primul lucru pe care îl face este să caute DOCTYPE-ul sau elementul care ajută la redarea corectă a siteului. Așadar DOCTYPE este un document care oferă browser-ului informația necesară pentru a afișa pagina corect.

Iata mai jos tipurile de DOCTYPE:

HTML 4.01 Transitional

Spoiler

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

 

 

HTML 4.01 Strict

Spoiler

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

 

 

HTML 4.01 Frameset

Spoiler

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

 


XHTML 1.0 Strict

Spoiler

<!DOCTYPE  html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

 

 

XHTML 1.0 Transitional

Spoiler

<!DOCTYPE  html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

 

XHTML 1.0 Frameset

Spoiler

<!DOCTYPE  html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

 

 

XHTML 1.1

Spoiler

<!DOCTYPE  html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this