Generate SEO-optimized meta tags, Open Graph tags, and Twitter Card tags for any web page. Paste the output into your HTML <head>.
<!-- Primary Meta Tags --> <title>My Awesome Website</title> <meta name="title" content="My Awesome Website" /> <meta name="description" content="A brief description of what this page is about. Keep it under 160 characters for best results." /> <meta name="robots" content="index, follow" /> <link rel="canonical" href="https://example.com" /> <!-- Open Graph / Facebook --> <meta property="og:type" content="website" /> <meta property="og:url" content="https://example.com" /> <meta property="og:title" content="My Awesome Website" /> <meta property="og:description" content="A brief description of what this page is about. Keep it under 160 characters for best results." /> <meta property="og:image" content="https://example.com/og-image.jpg" /> <meta property="og:site_name" content="Example" /> <meta property="og:locale" content="en_US" /> <!-- Twitter --> <meta property="twitter:card" content="summary_large_image" /> <meta property="twitter:url" content="https://example.com" /> <meta property="twitter:title" content="My Awesome Website" /> <meta property="twitter:description" content="A brief description of what this page is about. Keep it under 160 characters for best results." /> <meta property="twitter:image" content="https://example.com/og-image.jpg" /> <meta property="twitter:site" content="@example" />