meta charset

jeanm

Member
In order to define charset for DTD XHTML 1.0 Transitional which notation should I use please:

<meta charset="UTF-8" /> or

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

Thanks in advance, Jean
 

chrishirst

Well-Known Member
Staff member
Given the information in your post, ... ... The answer is ... Yes!

Because which form to use depends on on the way the document is to be used not the document type.
 

chrishirst

Well-Known Member
Staff member
Okay I tried to avoid the 'technical term' of 'content disposition' which basically means "How is the content being disseminated/delivered to user agents..

meta http-equiv directives are for when the document meta data is being or has to be delivered in the form of HTTP headers.

However there are two solutions:

!; Use both and let the user agent choose which to apply.

2; Don't use the "old" format of XHTML. Use the current standard of HTML 5.

Also: "Transitional" document declarations are used to tell the 'consuming' UA that the document content does NOT necessarily conform 'strictly' to the defined DTD as the 'provider' is transitioning from one DTD to another. So, using solution 1 with a 'Transitional' form of DTD IS correct.

In essence you are using the idea of a DTD incorrectly. A DTD does NOT define the coding you use. It is actually the EXACT opposite. ... In that it is your coding that determines what DTD you should use.
 
Top