Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active April 19, 2022 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miguelmota/8f70070c29ccfb8b854644393c731ff0 to your computer and use it in GitHub Desktop.
Save miguelmota/8f70070c29ccfb8b854644393c731ff0 to your computer and use it in GitHub Desktop.
SEO checklist
  • HTML Meta tags

    <html lang="en">
    <meta charset="UTF-8" />
    <meta http-equiv="content-language" content="en-us" />
    <meta name="description" content="DESCRIPTION" />
    <meta name="keywords" content="KEYWORDS" />
    <meta name="robots" content="index,follow" />
    <meta name="googlebot" content="index,follow" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="application-name" content="APPLICATION NAME" />
    <meta name="mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-title" content="APPLICATION NAME" />
    <meta name="theme-color" content="#000000" />
    <meta name="author" content="APPLICATION NAME" />
    <link rel="canonical" href="https://example.com/post.html" />

    Twitter

    <meta name="twitter:card" content="summary" />
    <meta name="twitter:site" content="@APPLICATION_NAME" />
    <meta name="twitter:creator" content="@APPLICATION_NAME" />
    <meta property="og:url" content="https://example.com/" />
    <meta property="og:title" content="APPLICATION NAME" />
    <meta property="og:type" content="website" />
    <meta property="og:description" content="DESCRIPTION" />
    <meta property="og:image" content="https://example.com/images/twitter-card.png" />
    <meta name="og:site_name" property="og:site_name" content="APPLICATION NAME" />
  • robots.txt

    User-agent: *
    Allow: /
    
  • <h1> keywords

  • <img src="" alt="KEYWORDS">

  • URL friendly path names with keywords and hyphens

  • sitemap

  • web app manifest file

  • PWA service worker

  • Content is king

  • Google Webmaster Tools

  • Google Analytics

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment