What are the most common meta tags?
TLDR: The top three meta tags for the 1000 popular websites were viewport, og:title and og:image.
How we analyzed for the most common meta tags?
In non-technical terms, what we did was the following:
- Get a list of the most popular website on the internet
- Fetch the html content of each of the websites
- Extract the meta tags we were interested in
- Perform some statistics
For a most technical explanation read the following article: Analyze Meta Tags With Elixir
What is the result?
The following list shows the top 10 most popular meta tags:
- description
- viewport
- og:title
- og:image
- og:description
- og:url
- og:type
- og:site_name
- twitter:card
- robots
One issue with the above list is that we don’t have any articles. We only look for the main domain (e..g “www.google.com”). How does the result look like if we analyzed links form HackerNews (a link sharing platform)?
HackerNews result
The following list shows the top 10 popular meta tags for articles shared on HackerNews.
- viewport
- og:title
- og:image
- og:type
- og:description
- og:url
- twitter:card
- description
- og:site_name
- twitter:title
Disclaimer: I took a sample of 100 articles. The main point of the above analyzes is to get a feeling for the most popular meta tags, so we can focus on those in the future.