🧪 Frontend Lab
交互式前端学习实验室

HTML 元信息:SEO 基础

html · intermediate · 20-25 min · Step 1/5

HTML Meta 标签

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="页面描述,显示在搜索结果中">
  <title>页面标题 - 网站名</title>

  <!-- Open Graph(社交分享) -->
  <meta property="og:title" content="分享标题">
  <meta property="og:description" content="分享描述">
  <meta property="og:image" content="https://example.com/og.png">
</head>
Meta用途
charset字符编码(必须 UTF-8)
viewport响应式必备
descriptionSEO 搜索摘要
og:*微信/Facebook 分享卡片