Early Access

HTML Tag Collections

SEO Starter

Tags vital for improving web page visibility in search engine results as they provide valuable information to both users and search engines.

Get Started

<title>About Us | Company</title>
<meta name="description" content="Learn how to bake delicious, moist cupcakes with our easy-to-follow guide. Featuring tips and tricks for beginners.">
<meta name="robots" content="index, follow">
<link rel="canonical" content="https://www.example.com/product">

Recommendations

  • Keywords meta tag is not used
    You can safely omit the keywords meta tag. It is not used by search engines anymore.
  • Use a unique title and description for each page
    Each page on your website should have a unique title and description. This helps search engines understand what each page is about.
  • Verify your canonical tags
    Make sure your canonical tags point to the correct version of your page. This helps search engines understand which version of your page to index.

Explanation

Specifies the title of the document, shown in a browser's title bar or on the page's tab. It can only contain text and any contained tags are not interpreted.

<title>About Us | Company</title>
Setting the page title and including the brand name.

Provides a brief and concise summary of a web page’s content. This summary is often used by search engines to display snippet previews in search results, influencing click-through rates.

<meta name="description" content="Learn how to bake delicious, moist cupcakes with our easy-to-follow guide. Featuring tips and tricks for beginners.">
A well-crafted description for a page about baking cupcakes, incorporating relevant keywords and staying within the recommended character limit.

robots

name

Provides search engines with directives for indexing and following links on your webpage. It plays a crucial role in SEO strategy by helping control crawler access and behavior.

<meta name="robots" content="index, follow">
Instructs search engines to index the page and follow all its links. This is usually the desired default behavior.

The canonical link element is used to indicate the preferred version of a set of duplicate pages to search engines. This helps prevent content duplication issues in search engine indexing, ensuring the correct page is ranked.

<link rel="canonical" content="https://www.example.com/product">
Sets the preferred URL for a product page, ensuring search engines consolidate ranking signals to this URL.

HTML Tag Collections

Ready to use <head> code samples to get started, and finished quickly.