vote up 3 vote down star

I was looking at the title tag http://www.w3schools.com/TAGS/tag%5Ftitle.asp So would it be legal if I had several titles with different lang IDs?

flag

41% accept rate

2 Answers

vote up 6 vote down check

Simple answer: no. Only one (and exactly one) <title> element is allowed.

Source: e.g. XHMTL 1.0 Strict DTD:

Exactly one title is required per document.

link|flag
Perfect. Somehow i get the sense you can read my mind and knew i wanted to know if its legal to have more then one rather then wanting to use more then one. – acidzombie24 Aug 23 at 2:36
vote up 6 vote down

No, HEAD does only allow one single TITLE element:

<!-- The TITLE element is not considered part of the flow of text.
       It should be displayed, for example as the page header or
       window title. Exactly one title is required per document.
    -->
<!ELEMENT TITLE - - (#PCDATA) -(%head.misc;) -- document title -->
<!ATTLIST TITLE %i18n>

Here’s the snippet from the document type definition of HTML 4.01:

<!ENTITY % head.content "TITLE & BASE?">

<!ELEMENT HEAD O O (%head.content;) +(%head.misc;) -- document head -->
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.