SEO 工具

Meta 标签生成器

生成 SEO 友好的 Meta 标签,包括 Title、Description、Open Graph 与 Twitter Card。

HTML
<!-- Primary Meta Tags -->
<title>My Awesome Page</title>
<meta name="title" content="My Awesome Page">
<meta name="description" content="A short, compelling description that shows up in search results and social shares.">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com/page">
<meta property="og:title" content="My Awesome Page">
<meta property="og:description" content="A short, compelling description that shows up in search results and social shares.">
<meta property="og:image" content="https://example.com/og.png">
<meta property="og:site_name" content="Example">
<meta property="og:locale" content="en_US">

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://example.com/page">
<meta name="twitter:title" content="My Awesome Page">
<meta name="twitter:description" content="A short, compelling description that shows up in search results and social shares.">
<meta name="twitter:image" content="https://example.com/og.png">

<!-- Canonical -->
<link rel="canonical" href="https://example.com/page">

使用说明

  1. 输入页面标题、描述与 URL。
  2. 自定义 Open Graph 字段。
  3. 复制生成的 HTML。