Limited supportUse with care and provide a fallback when broad support matters.

Overview

The name="application-title" attribute for the <meta> HTML element sets an installed web application's title bar text. It is most useful when native HTML semantics or browser capabilities can replace custom implementation work.

Browser support

Feature Desktop Mobile
Chrome
Edge
Firefox
Safari
Chrome Android
Safari iOS
html.elements.meta.name.application-title
Experimental Non-standard
134
134
134
1+Supported (version) Not supported Has note Sub-feature descriptions sourced from MDN Web Docs (CC BY-SA 2.5)

Syntax

HTML
<head>
  <meta name="application-name" content="マイアプリ">
  <title>My Apps - Dashboard</title>
</head>

Live demo

Application title purpose

Explain how application-title differs from the visible document title.

PreviewFullscreen

Title comparison

Compare stable app naming with page-specific titles.

PreviewFullscreen

Authoring advice

Keep the application name stable and separate from changing page labels.

PreviewFullscreen

Use cases

  • Use <meta name="application-title">

    Use <meta name="application-title"> when standard HTML needs a more specific platform feature, semantic signal, or browser capability.

  • Handle edge cases

    Apply <meta name="application-title"> to solve a focused requirement without redesigning the whole page architecture.

Cautions

  • Test <meta name="application-title"> in your target browsers and input environments before depending on it as a primary behavior.
  • Provide a fallback path or acceptable degradation strategy when support is still limited.

Accessibility

  • Make sure <meta name="application-title"> supports the intended task without making the page harder to perceive, understand, or operate.

Powered by web-features