HTML: Semantics of “title” Element Content

Published on February 26, 2007 (↻ June 12, 2021), filed under (RSS feed for all categories).

This post is outdated.

I already proposed this in October 2005 but see the need to bring it up again: It would be useful to allow other elements within the title of an HTML document. Why? You otherwise cannot mark abbreviations and other flow content elements, which means their meaning gets lost. For example, you cannot write

<title><abbr>HTML</abbr> document title</title>

(whose markup wouldn’t need to be rendered), but are required to use

<title>HTML document title</title>

Therefore, there’s no way to tell that “HTML” is an abbreviation here.

The set of elements we could allow within title’s limited. HTML probably benefits from enabling

I’ll suggest this again to the respective working groups, despite the original responses. And I’m looking forward to your thoughts.

Update (February 27, 2007)

Lachlan Hunt writes (via a W3C mailing list):

For compatibility reasons in HTML, title cannot contain elements because of the way it is parsed. It would be possible to do so in XHTML, but then that would be another incompatibility between the 2 languages and there is also limited usefulness in doing so anyway, since many of the use cases for title are plain text. e.g. the window’s title bar, bookmarks, search results, etc.

While enabling other elements within title means a compatibility issue, I currently do not believe that you cannot ignore them under certain circumstances, like in the title bar. [What am I missing?]

Was this useful or interesting? Share (toot) this post, or maybe treat me to a coffee. Thanks!

About Me

Jens Oliver Meiert, on September 30, 2021.

I’m Jens, and I’m an engineering lead and author. I’ve worked as a technical lead for companies like Google and as an engineering manager for companies like Miro, I’m close to W3C and WHATWG, and I write and review books for O’Reilly and Frontend Dogma.

With my current move to Spain, I’m open to a new remote frontend leadership position. Feel free to review and refer my CV or LinkedIn profile.

I love trying things, not only in web development, but also in other areas like philosophy. Here on meiert.com I share some of my views and experiences.

Comments (Closed)

  1. On February 28, 2007, 15:33 CET, Herbert Schiemann said:

    Since the title element is not part of the body I do not see much use in allowing other elements within the title element in HTML. Representational elements like em and strong are not needed in the title element, may-be semantical elements.
    On the other hand I cannot see a convincing reason why not to allow any “inline” elements in the title element in XHTML

  2. On March 1, 2007, 13:16 CET, Jens Oliver Meiert said:

    Well, there are several use cases, not only for abbreviations and stuff, but also to indicate changes in language. Thus, this limitation becomes even more interesting. It’s not just a spec inconsistency.

    By the way, please consider (and participate in) the ongoing discussion on the W3C www-html mailing list (February and March archives).

  3. On March 2, 2007, 14:33 CET, Robin Hodson said:

    Although (trivally), you things like
    <title lang="fr">J’ai eu un chat</title>
    So all is not completely lost.

    Search engines are quite good at picking up context, anyway.

    If you’re really worried about it, surely XHTML is the way to go, anyway?