Connect with us

SEO

What Are Core Web Vitals & How Can You Improve Them?

Published

on

What Are Core Web Vitals & How Can You Improve Them?

Core Web Vitals are speed metrics that are part of Google’s Page Experience signals used to measure user experience. The metrics measure visual load with Largest Contentful Paint (LCP), visual stability with Cumulative Layout Shift (CLS), and interactivity with First Input Delay (FID).

Mobile page experience and the included Core Web Vital metrics have officially been used for ranking pages since May 2021. Desktop signals have also been used as of February 2022.

Google's Page Experience signals include https, no intrusive interstitials, mobile-friendliness, and core web vitals

The easiest way to see the metrics for your site is with the Core Web Vitals report in Google Search Console. With the report, you can easily see if your pages are categorized as “poor URLs,” “URLs need improvement,” or “good URLs.”

The thresholds for each category are as follows:

  Good Needs improvement Poor
LCP <=2.5s <=4s >4s
FID <=100ms <=300ms >300ms
CLS <=0.1 <=0.25 >0.25

And here’s how the report looks:

Advertisement

Mobile and desktop Core Web Vitals report in Google Search Console

If you click into one of these reports, you get a better breakdown of the issues with categorization and the number of URLs impacted.

Breakdown of Core Web Vitals issues in GSC

Clicking into one of the issues gives you a breakdown of page groups that are impacted. This grouping of pages makes a lot of sense. This is because most of the changes to improve Core Web Vitals are done for a particular page template that impacts many pages. You make the changes once in the template, and that will be fixed across the pages in the group.

GSC page groups with specific issues

Now that you know what pages are impacted, here’s some more information about Core Web Vitals and how you can get your pages to pass the checks:

Quick facts about Core Web Vitals

Fact 1: The metrics are split between desktop and mobile. Mobile signals are used for mobile rankings, and desktop signals are used for desktop rankings.

Advertisement

Fact 2: The data comes from the Chrome User Experience Report (CrUX), which records data from opted-in Chrome users. The metrics are assessed at the 75th percentile of users. So if 70% of your users are in the “good” category and 5% are in the “need improvement” category, then your page will still be judged as “need improvement.”

Fact 3: The metrics are assessed for each page. But if there isn’t enough data, Google Webmaster Trends Analyst John Mueller states that signals from sections of a site or the overall site may be used. In our Core Web Vitals data study, we looked at over 42 million pages and found that only 11.4% of the pages had metrics associated with them.

Fact 4: With the addition of these new metrics, Accelerated Mobile Pages (AMP) was removed as a requirement from the Top Stories feature on mobile. Since new stories won’t actually have data on the speed metrics, it’s likely the metrics from a larger category of pages or even the entire domain may be used.

Fact 5: Single Page Applications don’t measure a couple of metrics, FID and LCP, through page transitions. There are a couple of proposed changes, including the App History API and potentially a change in the metric used to measure interactivity that would be called “Responsiveness.”

Fact 6: The metrics may change over time, and the thresholds may as well. Google has already changed the metrics used for measuring speed in its tools over the years, as well as its thresholds for what is considered fast or not.

Core Web Vitals have already changed, and there are more proposed changes to the metrics. I wouldn’t be surprised if page size was added. You can pass the current metrics by prioritizing assets and still have an extremely large page. It’s a pretty big miss, in my opinion.

Advertisement

Are Core Web Vitals important for SEO?

There are over 200 ranking factors, many of which don’t carry much weight. When talking about Core Web Vitals, Google reps have referred to these as tiny ranking factors or even tiebreakers. I don’t expect much, if any, improvement in rankings from improving Core Web Vitals. Still, they are a factor, and this tweet from John shows how the boost may work.

There have been ranking factors targeting speed metrics for many years. So I wasn’t expecting much, if any, impact to be visible when the mobile page experience update rolled out. Unfortunately, there were also a couple of Google core updates during the time frame for the Page Experience update, which makes determining the impact too messy to draw a conclusion.

There are a couple of studies that found some positive correlation between passing Core Web Vitals and better rankings, but I personally look at these results with skepticism. It’s like saying a site that focuses on SEO tends to rank better. If a site is already working on Core Web Vitals, it likely has done a lot of other things right as well. And people did work on them, as you can see in the chart below from our data study.

Advertisement

Graph showing percentage of good FID, LCP, and CLS over time

Let’s look at each of the Core Web Vitals in more detail.

Components of Core Web Vitals

Here are the three current components of Core Web Vitals and what they measure:

  • Largest Contentful Paint (LCP) – Visual load
  • Cumulative Layout Shift (CLS) – Visual stability
  • First Input Delay (FID) – Interactivity

Note there are additional Web Vitals that serve as proxy measures or supplemental metrics but are not used in the ranking calculations. The Web Vitals metrics for visual load include Time to First Byte (TTFB) and First Contentful Paint (FCP). Total Blocking Time (TBT) and Time to Interactive (TTI) help to measure interactivity.

Largest Contentful Paint

LCP is the single largest visible element loaded in the viewport.

The largest element is usually going to be a featured image or maybe the <h1> tag. But it could also be any of these:

Advertisement
  • <img> element
  • <image> element inside an <svg> element
  • Image inside a <video> element
  • Background image loaded with the url() function
  • Blocks of text

<svg> and <video> may be added in the future.

How to see LCP

In PageSpeed Insights, the LCP element will be specified in the “Diagnostics” section. Also, notice there is a tab to select LCP that will only show issues related to LCP.

Largest Contentful Paint issues in PageSpeed Insights point to the blue LCP tab

In Chrome DevTools, follow these steps:

  1. Performance > check “Screenshots”
  2. Click “Start profiling and reload page”
  3. LCP is on the timing graph
  4. Click the node; this is the element for LCP
Checking LCP in Chrome DevTools

Optimizing LCP

As we saw in PageSpeed Insights, there are a lot of issues that need to be solved, making LCP the hardest metric to improve, in my opinion. In our study, I noticed that most sites didn’t seem to improve their LCP over time.

Here are a few concepts to keep in mind and some ways you can improve LCP.

1. Smaller is faster

If you can get rid of any files or reduce their sizes, then your page will load faster. This means you may want to delete any files not being used or parts of the code that aren’t used.

How you go about this will depend a lot on your setup, but the process is usually referred to as tree shaking. This is commonly done via some kind of automated process. But in some systems, this step may not be worth the effort.

There’s also compression, which makes the file sizes smaller. Pretty much every file type used to build your website can be compressed, including CSS, JavaScript, Images, and HTML.

Advertisement
2. Closer is faster

Information takes time to travel. The further you are from a server, the longer it takes for the data to be transferred. Unless you serve a small geographical area, having a Content Delivery Network (CDN) is a good idea.

CDNs give you a way to connect and serve your site that’s closer to users. It’s like having copies of your server in different locations around the world.

3. Use the same server if possible

When you first connect to a server, there’s a process that navigates the web and establishes a secure connection between you and the server. This takes some time, and each new connection you need to make adds additional delay while it goes through the same process. If you host your resources on the same server, you can eliminate those extra delays.

If you can’t use the same server, you may want to use preconnect or DNS-prefetch to start connections earlier. A browser will typically wait for the HTML to finish downloading before starting a connection. But with preconnect or DNS-prefetch, it starts earlier than it normally would. Do note that DNS-prefetch has better support than preconnect.

4. Cache what you can

When you cache resources, they’re downloaded for the first page view but don’t need to be downloaded for subsequent page views. With the resources already available, additional page loads will be much faster. Check out how few files are downloaded in the second page load in the waterfall charts below.

First load of the page:

Advertisement

Waterfall chart for the first load of the page

Second load of the page:

Waterfall chart for the second load of the page, which is much smaller
5. Prioritization of resources

To pass the LCP check, you should prioritize how your resources are loaded in the critical rendering path. What I mean by that is you want to rearrange the order in which the resources are downloaded and processed. You should first load the resources needed to get the content users see immediately, then load the rest.

Many sites can get to a passing time for LCP by just adding some preload statements for things like the main image, as well as necessary stylesheets and fonts. Let’s look at how to optimize the various resource types.

Images Early

If you don’t need the image, the most impactful solution is to simply get rid of it. If you must have the image, I suggest optimizing the size and quality to keep it as small as possible.

On top of that, you may want to preload the image. This is going to start the download of that image a little earlier. This means it’s going to display a little earlier. A preload statement for a responsive image looks like this:

<link rel="preload" as="image" href=“cat.jpg"
imagesrcset=“cat_400px.jpg 400w,
cat_800px.jpg 800w, cat_1600px.jpg 1600w"
image>

Images Late

You should lazy load any images that you don’t need immediately. This loads images later in the process or when a user is close to seeing them. You can use loading=“lazy” like this:

Advertisement

<img src=“cat.jpg" alt=“cat" loading="lazy">

CSS Early

We already talked about removing unused CSS and minifying the CSS you have. The other major thing you should do is to inline critical CSS. What this does is it takes the part of the CSS needed to load the content users see immediately and then applies it directly into the HTML. When the HTML is downloaded, all the CSS needed to load what users see is already available.

Inlining critical CSS moves part of the CSS into the HTML
CSS Late

With any extra CSS that isn’t critical, you’ll want to apply it later in the process. You can go ahead and start downloading the CSS with a preload statement but not apply the CSS until later with an onload event. This looks like:

<link rel="preload" href="https://ahrefs.com/blog/core-web-vitals-2/stylesheet.css" as="style" onload="this.rel="stylesheet"">

Fonts

I’m going to give you a few options here for what I think is:

Good: Preload your fonts. Even better if you use the same server to get rid of the connection.

Better: Font-display: optional. This can be paired with a preload statement. This is going to give your font a small window of time to load. If the font doesn’t make it in time, the initial page load will simply show a default font. Your custom font will then be cached and show up on subsequent page loads.

Advertisement

Best: Just use a system font. There’s nothing to load—so no delays.

JavaScript Early

We already talked about removing unused JavaScript and minifying what you have. If you’re using a JavaScript framework, then you may want to prerender or server-side render (SSR) the page.

Your other options are to inline the JavaScript needed early. It’s similar to what we discussed about CSS, where you load portions of the code within the HTML or preload the JavaScript files so that you get them earlier. This should only be done for assets needed to load the content above the fold or if some functionality depends on this JavaScript.

JavaScript Late

Any JavaScript you don’t need immediately should be loaded later. There are two main ways to do that—defer and async attributes. These attributes can be added to your script tags.

Usually, a script being downloaded blocks the parser while downloading and executing. Async will let the parsing and downloading occur at the same time but still block parsing during the script execution. Defer will not block parsing during the download and only execute after the HTML has finished parsing.

How async and defer impact html loading

Which should you use? For anything that you want earlier or that has dependencies, I’ll lean toward async. For instance, I tend to use async on analytics tags so that more users are recorded. You’ll want to defer anything that is not needed until later or doesn’t have dependencies. The attributes are pretty easy to add. Check out these examples:

Advertisement

Normal:

<script src="https://www.domain.com/file.js"></script>

Async:

<script src="https://www.domain.com/file.js" async></script>

Defer:

<script src="https://www.domain.com/file.js" defer></script>

Advertisement
Misc

There are a few other technologies that you may want to look at to help with performance. These include Speculative Prerendering, Early Hints, Signed Exchanges, and HTTP/3.

Resources

Cumulative Layout Shift

CLS measures how elements move around or how stable the page layout is. It takes into account the size of the content and the distance it moves. Google has already updated how CLS is measured. Previously, it would continue to measure even after the initial page load. But now it’s restricted to a five-second time frame where the most shifting occurs.

It can be annoying if you try to click something on a page that shifts and you end up clicking on something you don’t intend to. It happens to me all the time. I click on one thing and, suddenly, I’m clicking on an ad and am now not even on the same website. As a user, I find that frustrating.

Example of the layout shifting when trying to click a link

Common causes of CLS include:

  • Images without dimensions.
  • Ads, embeds, and iframes without dimensions.
  • Injecting content with JavaScript.
  • Applying fonts or styles late in the load.

How to see CLS

In PageSpeed Insights, if you select CLS, you can see all the related issues. The main one to pay attention to here is “Avoid large layout shifts.”

CLS issues in PageSpeed Insights

We’re using WebPageTest. In Filmstrip View, use the following options:

  • Highlight Layout Shifts
  • Thumbnail Size: Huge
  • Thumbnail Interval: 0.1 secs

Notice how our font restyles between 5.1 secs and 5.2 secs, shifting the layout as our custom font is applied.

Layout shift from applying a custom font

Smashing Magazine also had an interesting technique where it outlined everything with a 3px solid red line and recorded a video of the page loading to identify where layout shifts were happening.

Advertisement

Optimizing CLS

In most cases, to optimize CLS, you’re going to be working on issues related to images, fonts or, possibly, injected content. Let’s look at each case.

Images

For images, what you need to do is reserve the space so that there’s no shift and the image simply fills that space. This can mean setting the height and width of images by specifying them within the <img> tag like this:

<img src=“cat.jpg" width="640" height="360" alt=“cat with string" />

For responsive images, you need to use a srcset like this:

<img

width="1000"

Advertisement

height="1000"

src="https://ahrefs.com/blog/core-web-vitals-2/puppy-1000.jpg"

alt="Puppy with balloons" />

And reserve the max space needed for any dynamic content like ads.

Fonts

For fonts, the goal is to get the font on the screen as fast as possible and to not swap it with another font. When a font is loaded or changed, you end up with a noticeable shift like a Flash of Invisible Text (FOIT) or Flash of Unstyled Text (FOUT).

Advertisement

If you can use a system font, do that. There’s nothing to load, so there are no delays or changes that will cause a shift.

If you have to use a custom font, the current best method for minimizing CLS is to combine  <link rel=”preload”> (which is going to try to grab your font as soon as possible) and font-display: optional (which is going to give your font a small window of time to load). If the font doesn’t make it in time, the initial page load will simply show a default font. Your custom font will then be cached and show up on subsequent page loads.

Injected content

When content is dynamically inserted above existing content, this causes a layout shift. If you’re going to do this, reserve enough space for it ahead of time.

Resources

First Input Delay

FID is the time from when a user interacts with your page to when the page responds. You can also think of it as responsiveness.

Example interactions:

  • Clicking on a link or button
  • Inputting text into a blank field
  • Selecting a drop-down menu
  • Clicking a checkbox

Some events like scrolling or zooming are not counted.

It can be frustrating trying to click something, and nothing happens on the page.

Advertisement

Not all users will interact with a page, so the page may not have an FID value. This is also why lab test tools won’t have the value because they’re not interacting with the page. What you may want to look at for lab tests is Total Blocking Time (TBT). In PageSpeed Insights, you can use the TBT tab to see related issues.

TBT issues in PageSpeed Insights

What causes the delay?

JavaScript competing for the main thread. There’s just one main thread, and JavaScript competes to run tasks on it. Think of it like JavaScript having to take turns to run.

While a task is running, a page can’t respond to user input. This is the delay that is felt. The longer the task, the longer the delay experienced by the user. The breaks between tasks are the opportunities that the page has to switch to the user input task and respond to what they wanted to do.

Optimizing FID

Most pages pass FID checks. But if you need to work on FID, there are just a few items you can work on. If you can reduce the amount of JavaScript running, then do that.

If you’re on a JavaScript framework, there’s a lot of JavaScript needed for the page to load. That JavaScript can take a while to process in the browser, and that can cause delays. If you use prerendering or (SSR), you shift this burden from the browser to the server.

Another option is to break up the JavaScript so that it runs for less time. You take those long tasks that delay response to user input and break them into smaller tasks that block for less time. This is done with code splitting, which breaks the tasks into smaller chunks.

There’s also the option of moving some of the JavaScript to a service worker. I did mention that JavaScript competes for the one main thread in the browser, but this is sort of a workaround that gives it another place to run.

Advertisement

There are some trade-offs as far as caching goes. And the service worker can’t access the DOM, so it can’t do any updates or changes. If you’re going to move JavaScript to a service worker, you really need to have a developer that knows what to do.

Resources

Tools for measuring Core Web Vitals

There are many tools you can use for testing and monitoring. Generally, you want to see the actual field data, which is what you’ll be measured on. But the lab data is more useful for testing.

The difference between lab and field data is that field data looks at real users, network conditions, devices, caching, etc. But lab data is consistently tested based on the same conditions to make the test results repeatable.

Many of these tools use Lighthouse as the base for their lab tests. The exception is WebPageTest, although you can also run Lighthouse tests with it as well. The field data comes from CrUX.

Advertisement

Field Data

There are some additional tools you can use to gather your own Real User Monitoring (RUM) data that provide more immediate feedback on how speed improvements impact your actual users (rather than just relying on lab tests).

Lab Data

PageSpeed Insights is great to check one page at a time. But if you want both lab data and field data at scale, the easiest way to get that is through the API. You can connect to it easily with Ahrefs Webmaster Tools (free) or Ahrefs’ Site Audit and get reports detailing your performance.

CWV reports in Ahrefs' Site Audit

Note that the Core Web Vitals data shown will be determined by the user-agent you select for your crawl during the setup.

I also like the report in GSC because you can see the field data for many pages at once. But the data is a bit delayed and on a 28-day rolling average, so changes may take some time to show up in the report.

Advertisement

Another thing that may be useful is you can find the scoring weights for Lighthouse at any point in time and see the historical changes. This can give you some idea of why your scores have changed and what Google may be weighting more over time.

Lighthouse scoring calculator with metric weights

Final thoughts

I don’t think Core Web Vitals have much impact on SEO and, unless you are extremely slow, I generally won’t prioritize fixing them. If you want to argue for Core Web Vitals improvements, I think that’s hard to do for SEO.

However, you can make a case for it for user experience. Or as I mentioned in my page speed article, improvements should help you record more data in your analytics, which “feels” like an increase. You may also be able to make a case for more conversions, as there are a lot of studies out there that show this (but it also may be a result of recording more data).

Here’s another key point: work with your developers; they are the experts here. Page speed can be extremely complex. If you’re on your own, you may need to rely on a plugin or service (e.g., WP Rocket or Autoptimize) to handle this.

Things will get easier as new technologies are rolled out and many of the platforms like your CMS, your CDN, or even your browser take on some of the optimization tasks. My prediction is that within a few years, most sites won’t even have to worry much because most of the optimizations will already be handled.

Many of the platforms are already rolling out or working on things that will help you.

Already, WordPress is preloading the first image and is putting together a team to work on Core Web Vitals. Cloudflare has already rolled out many things that will make your site faster, such as Early Hints, Signed Exchanges, and HTTP/3. I expect this trend to continue until site owners don’t even have to worry about working on this anymore.

Advertisement

As always, message me on Twitter if you have any questions.




Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address

SEO

The Most Engaged YouTube Fans For NCAA Basketball Teams

Published

on

By

The Most Engaged YouTube Fans For NCAA Basketball Teams

Imagine that you head up digital marketing at Turner Sports or CBS Sports, which have the exclusive rights to license NCAA marks, tickets, and taglines in commercial promotions.

Or suppose that your social video agency was just invited to pitch AT&T, Capital One, or Coca-Cola, which are official NCAA corporate champions.

And you have an assignment to identify the most engaged YouTube fans for the NCAA Division 1 Men’s and Women’s basketball teams.

I realize that you probably don’t work at one of those sports media and entertainment companies and it’s highly unlikely that you’ll be asked to pitch one of those brands in the foreseeable future.

So, why should you care about what makes engaged NCAA fans on YouTube?

Advertisement

Keep reading, there is method in the madness.

Cognitive, Emotional, And Behavioral Metrics

As mentioned previously, the Interactive Advertising Bureau (IAB) has identified 30 metrics – 7 cognitive, 4 emotional, and 19 behavioral – that brands or agencies can use to measure the “engagement continuum.”

Image from IAB, March 2024

But fan engagement can fluctuate depending on whether a college basketball team is on the bubble, makes it to the Big Dance, or goes deep into the Sweet 16, Elite Eight, and Final Four.

Fan engagement can also vary depending on the number of logo 3s, buzzer beaters, or overtime wins.

That’s why this hypothetical assignment is so hard.

Nevertheless, exploring various video engagement metrics from several video intelligence sources can help you better understand the most engaged YouTube fans for NCAA basketball teams and how to apply what you’ve learned to your brands or clients.

Advertisement

Here are three cognitive metrics that you should explore when measuring engagement:

  • Change in Brand Awareness/Familiarity: You can use surveys to measure the extent your brand is recognized by potential customers before and after this year’s NCAA tournaments.
  • Change in Brand Consideration: You can also use pre- and post-March Madness surveys to measure your brand’s inclusion in a set customers would select from.
  • Change in Purchase Intent: You can also use Brand Lift surveys to measure the delta in customers’ plans or willingness to purchase your brand in the future.

Here are three emotional metrics that you should look at using to measure engagement:

  • Change in Baseline Brand Perception: Surveys enable you to measure the pre-post delta in what potential customers think and feel about your brand.
  • Change in Baseline Brand Favorability: Surveys also enable you to measure what potential customers like and value about your brand before and after the Big Dance.
  • Change in Baseline Brand Loyalty: Surveys enable you to measure customer loyalty in terms of weight and frequency of usage – as well as likelihood to switch – from Selection Sunday, March 17, to the women’s NCAA championship game on Sunday, April 7, and the men’s NCAA championship game on Monday, April 8, 2024.

Here are six behavioral metrics worth exploring to measure engagement:

  • Watch Time: The total amount of time viewers spend watching a video, including any replays or rewatches, should be a key metric. Since it’s only available if you have access to your brand or client’s YouTube Analytics, digital marketers and social video agencies use “views” as a metric to compare videos across other YouTube channels.
  • Applause Rate: The number of likes a YouTube video gets.
  • Amplification Rate: The number of shares a YouTube video gets.
  • Conversation Rate: The number of comments a YouTube video gets.
  • Engaged-View Conversions (EVCs): In Google Analytics 4 (GA4), an engaged-view conversion (EVC) indicates that someone watched a YouTube video for at least 10 seconds and then converted on your website or app within 3 days of viewing the video.
  • Economic Value: This is the monetary value of visitors from YouTube to your site who go on to complete micro conversions like subscribing to a newsletter or initiating a chat with your business, as well as macro conversions like purchasing a product or registering for a service.

In addition, here are some of the video intelligence sources you should evaluate:

  • Official Team and Conference Channels: Many NCAA Division 1 teams and major conferences, like the ACC, Big 10, and SEC, have their own YouTube channels. These channels feature highlights, interviews, and behind-the-scenes content. Comparing their metrics can provide you with insights.
  • Media and NCAA Basketball Channels: YouTube channels like CBS Sports and March Madness upload video content about various college basketball teams, allowing you to compare fan engagement based on comments and viewership.
  • Third-Party Tools: Tubular Labs, a social video intelligence company that provides data on social video audiences, and Pixability, a company that helps brands monitor their YouTube and CTV campaigns, can provide deeper insights into engagement, but they require paid subscriptions.

For this article, I contacted Matt Duffy, the company’s CMO, and Sean Alie, the head of its insights team, to see if they had any critical data or strategic insights worth sharing.

They did – and it appears below.

There are four sections: men’s team views, women’s team views, year-over-year (YoY) data for men’s and women’s teams + men’s vs. women’s teams, and lastly, views by popular players (such as Caitlin Clark, the NCAA Division I all-time leading scorer of the Iowa Hawkeyes in the Big Ten Conference).

Here’s what the men’s NCAA basketball views look like.

They are filtered to sports videos only, and each video includes the keywords “*team name*,” “basketball,” and “men” somewhere in the metadata.

The timeline is February only.

Advertisement

Men’s Basketball

Houston, the #1 ranked team, earned 7.5% more views than the next leading team, Kansas (21M vs 19.6M). Kansas did rank first in engagements, though, earning 13% more engagements than Houston (442K vs 391K).

Duke ranked 3rd in views (16M) and engagements (389K). One thing to note is Houston is the #1 ranked team and the most viewed team on YouTube.

However, Kansas was ranked 14th and Duke 9th, yet they were able to rank 2nd and 3rd in views. This is a testament to the brand awareness these programs hold.

Men's basketball engagement dataImage from Pixability, March 2024

Women’s Basketball

This data uses the same methodology as the men’s data except with “women” as a keyword instead of “men.”

Iowa, home of star Caitlin Clark, earned 51% more views than the next leading program, LSU (12.4M vs 8.2M). This makes sense as Angel Reece plays for LSU and is widely considered the second most popular player in women’s college basketball, after Caitlin.

The individual stars may influence views for women’s programs more than the team’s fan base. Iowa earned 9.5% more engagements than LSU (178.5K vs 162.9K). Indiana ranked 3rd in views, followed by UConn.

Women's basketball engagement dataImage from Pixability, March 2024

Men’s Vs. Women’s Teams And YoY Stats

  • The top 16 men’s teams earned a combined 130.8M views in February 2024, which is 157% more than the top 16 women’s teams have earned (50.8M). Men’s teams earned 247% more engagements (2.4M) than women’s teams (690K).
  • YoY, the top 16 ranked men’s teams earned 61% more views this year compared to the top 16 ranked teams last year in February (130.8M vs 81.2M).
  • YoY, the top 16 ranked women’s teams earned 147% more views this year compared to the top 16 ranked teams last year in February (50.8M vs 20.5M). This means that views for women’s college basketball are growing faster than the men’s. A large part of this was due to the rise of Caitlin Clark.

Views By Popular Basketball Players

The stats below are based on players participating in the tournament: Caitlin Clark earned 17.5M player mention views in February, which is more than any other player in the men’s and women’s tournaments.

Caitlin earned 10.6x more views in February than the highest male player (Kyle Filipowski) views polled in February (17.5M vs 1.6M).

Advertisement

The second most viewed player was also a woman, Angel Reese, who plays for the LSU Tigers in the Southeastern Conference. Angel earned 3.9x more views than Kyle Filipowski, who plays for the Duke Blue Devils in the Atlantic Coast Conference (6.4M vs 1.6M).

The rivalry between these two women stars has fueled incredible engagement on YouTube.

Again, men’s teams are more popular than women’s teams, but at the individual level, women players are outperforming men by a large margin.

Although the USC Trojans of the Pac-12 Conference won’t make the tournament this year, LeBron Raymone “Bronny” James earned 32M views, which is 87% higher than Caitlin Clark’s views.

This is still incredibly impressive for Caitlin as she is putting up numbers that compete with someone as well-known as Bronny James.

Engagement Data for PlayersImage from Pixability, March 2024

Of course, you could figure out who are the most engaged YouTube fans for NCAA basketball teams without using third-party tools.

But that might take so much time that you’d miss some of the games that make March Madness worth watching and create highlights worth sharing on YouTube.

Advertisement

Hey, you make the call.

How Marketers Can Use Insights Into The Most Engaged Fans

So, how can digital marketers use these insights about NCAA basketball’s most engaged fans?

Well, I can think of three key ways to apply what we’ve just learned.

First, as I mentioned in “39 Emotions Digital Marketers Can Use In Advertising,” people share videos that elicit “high-arousal” or intense emotions twice as much as ones that elicit “low-arousal” or moderate emotions. And March Madness elicits several intense emotions.

For example, the Big Dance triggers nostalgia, a sentimental longing or wistful affection for some past period or irrecoverable condition. How do you make use of this insight?

Watch Continental Tire’s “Grant Hill, Christian Laettner, and the Smart Choice!” Basketball legends Grant Hill and Christian Laettner of Duke not only tell us about the importance of making smart choices but also remind us of “The Shot” during the 1992 NCAA tournament.

Advertisement

During a game between East Region #1 seed Duke and #2 seed Kentucky in the East Regional Final to determine a spot in the Final Four, defending national champion Duke trailed 103–102 with 2.1 seconds remaining in overtime.

That’s when Hill threw a pass three-quarters of the length of the court to Laettner, who faked right, dribbled once, turned, and hit a jumper as time expired for the 104–103 win. In 2004, Sports Illustrated called it the greatest college basketball game of all time.

Second, college athletes can now make money from their name, image, and likeness (NIL). So, brands like State Farm Insurance can now feature players like Caitlin Clark in YouTube videos like “Shoot! (feat. Caitlin Clark, Jimmy Butler, Reggie Miller) :30 | State Farm Commercial.”

It’s worth noting that State Farm uploaded this video on Nov. 21, 2023, almost three months before Clark broke “Pistol” Pete Maravich’s NCAA Division I scoring record on Feb. 15, 2024. Kudos to the brand and their agency for being ahead of the curve.

Advertisement

Third, the line between creators and their audiences is blurring.

At last year’s Brandcast, YouTube CEO Neal Mohan told advertisers, “The universe of ‘creators’ is growing every day as more people make videos on their phones.

This limitless access means the world of creation is changing. Fans used to engage with a like or subscribe. But now, you can see a trend and easily jump in with your own video.”

For an example, check out “Meet the New Face of March Madness – Robbie Avila #collegebasketball #indianastate #sports #funny.” BenchwarmerBran, the online alias of Brandon Carney, a sports content creator who makes jokes about teams, players, and fantasy leagues, uploaded this video on March 7, 2024. And it currently has 405,000 views and 63,500 engagements.

If you use Tubular Intelligence, then you will see that 1,536 accounts in the U.S. uploaded 3,208 videos about “March Madness” to YouTube in the last 90 days.

Advertisement

And influencers uploaded 2,359 of these videos (73.5%), while media and entertainment companies uploaded 602 (18.8%), and brands uploaded only 224 (7.0%).

Now, these 3,208 YouTube videos about March Madness got a total of 11.6 million views and 455,000 engagements.

So, targeting affinity segments, people who already have a strong interest in relevant topics, may be a much smarter option than targeting placements, specific YouTube channels or websites and apps on the Google Display Network.

How SEO Pros Can Use This Information, Too

So, how could an SEO specialist use this information to make actionable decisions?

Well, I’m sad to say that some won’t.

Why? As Captain Spock (Leonard Nimoy) said in “Star Trek II: The Wrath of Kahn”,

Advertisement

“He is intelligent, but not experienced. His pattern indicates two-dimensional thinking.”

In other words, some intelligent SEO specialists think their job is to work with text, not videos. And they also think that the content that their optimizing is to help people make rational decisions, not emotional ones.

But YouTube videos have been appearing in Google’s search results since May 2007. And as I mentioned in “Customer Personas Can Transform SEO, PPC and Content Marketing,” Google has talked about emotions driving search intent since May 2019.

As Justin De Graaf, Head of Ads Research and Insights at Google, observed back then,

“The truth is, decision-making is not a rational process, but one driven mainly by how people feel. The rational brain layers on reasons for our choices only after they’re made.”

So, if SEO specialists continue to focus on optimizing text to help people make rational decisions, then their pattern indicates two-dimensional thinking.

Now, they may continue to be somewhat successful, especially if they can answer “yes” when asked: “After reading your content, will someone leave feeling they’ve learned enough about a topic to help achieve their goal?”

But, as Google has said,

Advertisement

“The helpful content update aims to better reward content where visitors feel they’ve had a satisfying experience, while content that doesn’t meet a visitor’s expectations won’t perform as well.”

So, SEO specialists who can’t create (and optimize) video content that tells a good story and makes a visitor feel something emotionally may struggle to provide a satisfying experience.

In conclusion, this is why it’s worth dreaming about getting a starring role in a Cinderella story.

I realize that you probably won’t get a job at one of those media and entertainment companies and it’s highly unlikely that you’ll be asked to pitch one of those brands in the foreseeable future.

But, if and when your opportunity presents itself, then you will be ready to take your best shot at the buzzer.

More resources:


Featured Image: adriaticfoto/Shutterstock

Advertisement

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

SEO

7 Easy SEO Tips for Small Businesses

Published

on

7 Easy SEO Tips for Small Businesses

If you’re a small business owner, people are searching for what you do on Google. Unless you show up, you’re missing out on customers or clients.

SEO is how you do that, and the basics are quick and easy.

Follow these tips to rank your small business higher in no time.

If you only do one thing as a small business owner, make it to claim and optimize your GBP.

Advertisement

A Google Business Profile helps users find and learn about your business in Google search and maps. It’s free to set up and lets you share important details about your business with customers, like its phone number, opening times, and offerings.

But here’s the real beauty of Business Profiles: People don’t have to search for your business to see your profile. They can appear for broader searches like “pizza restaurant near me.”

Example of a Google Business Profile in the 'map pack ' resultsExample of a Google Business Profile in the 'map pack ' results

This makes them a powerful way to attract new customers searching for what you do.

Here are the basics of optimizing your profile:

  • Set the right business category and type
  • Add opening hours (and keep them up to date!)
  • Add contact details
  • Add photos
  • Add your products or services

Learn more in our 30-minute Business Profile optimization guide.

People don’t always turn to Google to find small businesses. They also search popular business directories and trusted review websites.

Even if they do search Google, they’ll often end up browsing a popular directory anyway because that’s often what ranks.

Advertisement

For example, I was recently searching for a cat sitter for an upcoming vacation. I started my search by typing “cat sitter near me” into Google. But I soon ended up browsing a niche directory because that’s what all the top results were.

Local directories and niche sites rank for "cat sitter near me"Local directories and niche sites rank for "cat sitter near me"

In fact, I even ended up booking a cat sitter through one of these websites:

Booking I made on a local niche site after finding it in GoogleBooking I made on a local niche site after finding it in Google

Long story short, if you’re not listed on popular niche or local directories, you’re losing out on second-hand search traffic and customers.

Let’s look at a couple of ways to find the best directories to get listed on.

Search Google

Head over to Google and search for “[what your business does] in [location]”, then add your business to directories that rank on the first page.

For example, if you’re a cat sitter in Seattle, you’ll probably want to get listed on:

  • Meowtel
  • Rover.com
  • Yelp
  • Care.com
Local niche sites and directories ranking in Google searchLocal niche sites and directories ranking in Google search

Find the directories your competitors are listed on

Most directory listings also link to your website, which means you can use your competitors’ backlink profile to find relevant directories.

Here’s how to do it in Ahrefs:

  1. Go to our Competitive Analysis tool
  2. Select the “referring domains” mode
  3. Enter your site in the “Not linking to target” field
  4. Enter the sites of a few competing businesses in the “But linking to these competitors” fields
  5. Hit “Show link opportunities”
Finding local and niche directories in AhrefsFinding local and niche directories in Ahrefs

You should see a list of domains that link to your competitors but not you. Eyeball this list for sites that look like relevant directories and add your business to them.

Examples of local directories linking to competitorsExamples of local directories linking to competitors

Not sure who your competitors are?

Search Google for “[what your business does] in [location]” and go to Maps. Follow the website links on their profiles to find their domains, then copy and paste them into Ahrefs.

Advertisement
How to find competitorsHow to find competitors

Having technical SEO issues can hurt your rankings, so it’s worth checking that your website is technically sound and fixing any major issues.

The easiest way to do this is with an SEO audit tool like Ahrefs’ Site Audit. You can use this free of charge with an Ahrefs Webmaster Tools (AWT) account. Just sign up, follow the steps to crawl your site, then filter the All issues report for Errors:

How to find website errors in Ahrefs' Site AuditHow to find website errors in Ahrefs' Site Audit

For advice on what the issues mean and how to fix them, hit the tooltip:

How to find advice on fixing the issuesHow to find advice on fixing the issues

For example, Site Audit found eight 404 pages on our blog during a recent crawl:

Example of a 404 page issueExample of a 404 page issue

To fix this issue, we can either reinstate, redirect, or remove internal links to the pages.

If you also schedule regular crawls in Site Audit, you’ll get alerts about new SEO issues so you can fix them before they cause problems.

Email alert from Ahrefs' Site AuditEmail alert from Ahrefs' Site Audit

People often search for specific products or services rather than what your business does. For example, they might search for “bathroom remodel near me” instead of “plumber near me.”

If they do this, Google tends to show pages about that service, not plumbers’ homepages.

Google tends to service pages rather than homepages when searching for specific servicesGoogle tends to service pages rather than homepages when searching for specific services

You might struggle to rank for these terms unless you have these pages.

But you might be thinking, “I offer lots of services. I don’t have enough time to create pages for all of them.”

Advertisement

Keyword research is the answer. This is the process of discovering what words and phrases your customers are typing into Google. You can use it to find the products or services they’re searching for the most and then prioritize creating pages about them.

Here’s how to do it:

  1. Brainstorm all the products or services you offer
  2. Paste them into Ahrefs’ Keywords Explorer (make sure to select the country you’re in)

You’ll see the keywords sorted by their estimated monthly search volumes from high to low:

Plumbing keywords sorted by popularity, via Ahrefs' Keywords ExplorerPlumbing keywords sorted by popularity, via Ahrefs' Keywords Explorer

This should give you a good idea of relative interest in the products or services you offer and the pages you should prioritize creating.

Sidenote.

These are national volumes, but that shouldn’t really matter. If a service is more popular than another nationally, it’s probably more popular in the local area where your business operates, too. The only caveat is if you offer something like HVAC services and the climate in your country differs greatly from region to region.

For example, it would make sense to have a page for boiler servicing if it’s something you offer.

Advertisement

Having pages about your products and services is one thing, but you also need to make sure they tell searchers what they want to know. If you know your customers well, you can probably get halfway there easily. But it’s always best to do a bit of research.

For example, I was recently searching for someone to repair our boiler…

My process went a little like this:

  • Searched Google for “boiler repair near me”
  • Had a quick look at the reviews and websites of the top-ranked businesses
  • Called the most promising ones

I knew that our boiler brand isn’t very common, so I was specifically looking for engineers who mentioned working with our brand on their websites. Out of a dozen sites I checked, only one mentioned this:

Example of a site giving searchers what they wantExample of a site giving searchers what they want

As a result, this was the first company I called.

If the other engineers had only done a bit of keyword research, they’d have known this is something customers care about and included it on their pages.

Here’s how you can do that in Ahrefs:

  1. Go to Keywords Explorer
  2. Search for your product or service (e.g., “boiler repair”)
  3. Go to the Matching Terms report
  4. Go to the “Cluster by terms” tab
Use term clustering in Ahrefs' Keywords Explorer to find what customers care aboutUse term clustering in Ahrefs' Keywords Explorer to find what customers care about

From here, skim the list for similar terms that might indicate the kind of information searchers are looking for.

For example, the highlighted terms below are all boiler brands:

Advertisement
Customers searching for boiler repair care about boiler brandsCustomers searching for boiler repair care about boiler brands

I also see mentions of different types of boilers, like oil, gas, and electric:

Customers searching for boiler repair care about boiler typesCustomers searching for boiler repair care about boiler types

From this quick skim alone, it’s clear that searchers are looking for engineers who can repair their type and brand of boiler.

If you’re a local boiler engineer, having this information not only helps searchers but also saves wasted time answering the phone to give your “Oh… I don’t work with that brand of boiler, sorry!” response.

Can this also help you rank higher?

In all likelihood, yes.

For example, had I searched Google for local engineers who work with our brand of boiler, the engineer’s website that actually mentions the brand ranks in position #3:

Giving searchers what they want seems to pay offGiving searchers what they want seems to pay off

Backlinks are a known ranking factor. The only problem is that high-quality backlinks are far from easy to get. (This is what makes them such a good ranking factor.)

For small businesses, taking advantage of existing relationships is a good starting point.

Here are a few ideas:

Advertisement
  • Give suppliers testimonials. These often get featured on their sites along with a link.
  • Publish client spotlights. For example, if you’re a plumber who recently helped renovate your local church, write it up and ping them about it. They might feature it on their website.
  • Pitch stockist pages. For example, if your store stocks a local craft beer, see if the brewery lists its stockists on its website. If its does, you can usually get featured just by asking.

I would also recommend trying to replicate your competitors’ best backlinks. To find these, plug their site into Ahrefs’ Site Explorer and check the Backlinks report.

How to find your competitors' backlinks in Ahrefs' Site ExplorerHow to find your competitors' backlinks in Ahrefs' Site Explorer

Sidenote.

If there is a lot to go through, toggle the “Best links” filter to narrow things down.

For example, this local plumber has two links from sites listing small businesses that offer discounts to health and other key workers:

Example of easy-to-replicate backlinks to a plumber's websiteExample of easy-to-replicate backlinks to a plumber's website

Both of these would be pretty easy links to replicate (assuming you’re happy to offer this discount!)

Google itself advises small business owners to remind customers to leave reviews and reply to them to build trust:

Google's advice on reviews for small businessesGoogle's advice on reviews for small businesses

As Google says, the easiest way to do this is to create and share a link to your Business Profile with customers. You can do this in “thank you” emails, at the end of customer support interactions, or simply by including a link or QR code on receipts.

This is also likely to help with your “map pack” rankings, at least according to BrightLocal’s survey. It states that 17% of SEOs deem reviews to be the most important ranking factor.

17% of SEOs think reviews is the most important ranking factor for the 'map pack'17% of SEOs think reviews is the most important ranking factor for the 'map pack'

But don’t limit yourself to asking for and replying to reviews on your Google Business Profile. Many customers also trust other websites. If you’re wondering which review sites matter most for your small business, Google its name and look for other review sites in the results.

For example, reviews on TripAdvisor are clearly important for my favorite pizzeria:

Advertisement
TripAdvisor is an important place to get reviews for restaurantsTripAdvisor is an important place to get reviews for restaurants

For my favorite local craft bottle shop, niche review sites like RateBeer and Untapped seem more important:

Untappd is an important place to get reviews for bottle shopsUntappd is an important place to get reviews for bottle shops

FAQs

What is small business SEO?

Small business SEO is the process of improving your online presence to get more customers from Google and other search engines. It almost always revolves heavily around optimizing for local searches.

What are the benefits of small business SEO?

There are three main benefits of doing SEO for your small business:

  • More brand awareness. Showing up in more places online means more people will become familiar with your business.
  • More traffic. Ranking higher in Google and other search engines leads to more traffic.
  • More customers. As long as your traffic is targeted, it’ll bring in more customers or clients.

What’s the difference between small business SEO and local SEO?

Unless you sell products or services beyond your local area, not much.

If your small business sells products nationally or internationally, check out our guide to ecommerce SEO or our guide to international SEO.

If your small business sells services in multiple locations (e.g., car hire), read our guide to local keyword research to learn how to optimize for that.

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

SEO

A Comprehensive On-Page SEO Checklist for 2024

Published

on

A Comprehensive On-Page SEO Checklist for 2024

If you’ve invested time and effort writing an epic piece of content, don’t forget about on-page SEO. It helps google to understand what your page is about and show it to as many people as possible in the search results.

Even better, many on-page improvements are super quick and easy to do.

Follow this checklist for perfect on-page SEO every time:

If you’re looking for a reusable interactive checklist to use time and time again, here are a few other formats

Let’s run through everything real quick.

Advertisement

Google says it’s best to use words that are relevant to your content in page URLs, so you don’t want random gobbledygook urls like domain.com/734/834753956756 if you can avoid it. It’s better to use something short and descriptive like domain.com/mens/shirts.

Short, descriptive URLs are best for SEOShort, descriptive URLs are best for SEO

It only takes a few seconds to change this in most content management systems:

You can change URL structures in most CMS's in secondsYou can change URL structures in most CMS's in seconds

If you’re not sure what words or phrases to use, the main keyword you’re targeting is usually a good bet. That’s what we do on the Ahrefs blog 90% of the time.

For example, our target keyword for this post is “on page SEO checklist,” so that’s what the post’s URL is:

Using the target keyword is never a bad idea for a URL slugUsing the target keyword is never a bad idea for a URL slug

Few best practices to keep in mind:

  • Avoid repeating words. If your page is about mens shirts and it’s nested in the /mens/ subfolder, you don’t need to repeat the word “mens.” domain.com/mens/shirts/ is better than domain.com/mens/mens-shirts/
  • Avoid dates. If a searcher comes across domain.com/blog/2020/fashion-tips/ in 2024, they’re going to assume it’s out-of-date even if you updated the content yesterday. So domain.com/blog/fashion-tips/ would be better.
  • Avoid being too specific. If your URL is domain.com/blog/20-best-fashion-tips/, it’s going to look weird if you add more tips to your post later on. Using the less specific domain.com/blog/best-fashion-tips/ gives you more future freedom.

Google says that title tags are often the main piece of information searchers use to decide which result to click on. If yours is boring and dull, you’re probably not going to get as many clicks as you could—even if you rank.

It’s the same story for meta descriptions, which Google often uses for the descriptive snippet.

Pages with compelling title tags and meta descriptions get more clicksPages with compelling title tags and meta descriptions get more clicks

There’s no one-size-fits-all approach for title tags, but the ABC formula is a decent starting point for blog posts:

Use the ABC formula to craft more compelling title tagsUse the ABC formula to craft more compelling title tags

For your meta description, my best advice is to try to expand on your title tag to give searchers more detail and context.

If you’re struggling or just want a fast solution, give our free AI title tag generator and meta description generator a shot. Tell the tools what your page is about and your desired writing tone and they’ll generate a few options.

Advertisement
Use Ahrefs' free AI and meta description generators to craft compelling copy in secondsUse Ahrefs' free AI and meta description generators to craft compelling copy in seconds

Remember to keep them both short and swee, too. If they’re too long, they’ll get cut-off in search. This looks odd and makes them less compelling. You can use a free tool like this one to check for truncation before publishing, or Ahrefs’ Site Audit to find all the issues on your site.

Google recommends using one H1 tag per page. It makes sense to use this for your page title as H1 is the highest level heading there is.

Most content management systems do this automatically, but you can double-check your title is indeed a H1 for free using Ahrefs SEO toolbar. Just click the Content tab:

Use the Ahrefs SEO Toolbar to check the structure of your contentUse the Ahrefs SEO Toolbar to check the structure of your content

If the copy you’d expect to be wrapped in a H1 tag isn’t, hit up your developer!

People want what you promised them in your title and meta description, so don’t kick things off with a load of fluff. Get straight to the point and give the reader what they came for in the first sentence.

There’s no one-size-fits-all way to do this. It all depends on what searchers are looking for.

For example, when people search for “toxic backlinks,” they’re overwhelmingly looking for a definition above all else. That’s why I made the very first paragraph of my article the definition:

Advertisement
People have short attention spans; get to the point fastPeople have short attention spans; get to the point fast

But when people search for “best snow blower,” they just want a recommendation—so that’s what Wirecutter gives them in the first paragraph:

Wirecutter is great at getting to the point in their introsWirecutter is great at getting to the point in their intros

Sidenote.

I think Wirecutter’s opening paragraph could be even better because there’s no point in that first sentence. If you’re searching for “best snow blower,” you already know the benefits of the product. You just want to know which one is best!

Google’s John Mueller said that the search giant uses headings to help better understand the content on a page. This is why you need to make sure they’re clear and descriptive.

It’s easy to miss the mark here. We’ve even been guilty of it ourselves.

For example, look at these two subheadings from our list of blogging tips:

Some of our rather cryptic subheadings from our list of blogging tipsSome of our rather cryptic subheadings from our list of blogging tips

Do you have any idea what those mean at first glance?

Me neither. And many of the other subheadings in our post were also unclear.

Advertisement

If you suspect the same might be true for your subheadings, try this: ask ChatGPT to rewrite them for clarity.

Asking ChatGPT to rewrite subheadings for clarityAsking ChatGPT to rewrite subheadings for clarity

This is exactly what Sam did for our post, and it made them much clearer in seconds.

For example, “Create a ‘Do 100’ project” became “Start a ‘write 100 blog posts’ project”:

Example of a subheading rewritten by ChatGPTExample of a subheading rewritten by ChatGPT

Make sure your subheadings have proper hierarchy, too. It helps Google to understand the structure and makes it easier to skim for readers.

Headings improve user experience by creating hierarchyHeadings improve user experience by creating hierarchy

Search intent is the reason behind the search. Unless your page aligns with intent and gives searchers what they’re looking for, your chances of ranking high are slim to none.

To show just how important this is, look at this graph:

Our rankings for "backlink checker" shot up after we matched search intentOur rankings for "backlink checker" shot up after we matched search intent

This shows our ranking position for the keyword “backlink checker” over time. You can see that in late 2018, we suddenly went from struggling to rank higher than position #5 to consistently ranking #1.

How? By optimizing our page for search intent.

Here’s what the page looked like before:

Advertisement
Our original "backlink checker" landing pageOur original "backlink checker" landing page

Here’s what it looks like now:

Our current "backlink checker" landing pageOur current "backlink checker" landing page

Minor design tweaks aside, there’s one important difference: there’s now a free backlink checker embedded. Before it just asked visitors to start a trial of our SEO software.

By catering to what searchers actually wanted, we improved the page’s rankings and its estimated search traffic from ~18K to ~215K monthly visits. That’s a 12X improvement!

Traffic increased by 12X when we improved search intent. That's huge!Traffic increased by 12X when we improved search intent. That's huge!

But how did we know what searchers wanted?

Back then, we had to do a manual analysis of the top search results. While you can still do that, it’s much easier just to click the “Identify intents” button in Keywords Explorer:

Use the "Identify intents" button in Keywords Explorer to quickly understand what searchers are looking forUse the "Identify intents" button in Keywords Explorer to quickly understand what searchers are looking for

This uses the power of AI to analyze the top search results and tell you what searchers are looking for.

Broadly aligning your content with search intent isn’t enough. It should also cover the topic in full to tell searchers everything they want to know. This can help it rank for more keywords and bring more traffic as a result, too.

To find what searchers are looking for, look for common subtopics among top-ranking pages.

There are a few ways you can do this.

Advertisement

Manually check the top-ranking pages

Search for your target keyword in Google, open a few top-ranking pages, and eyeball them for commonalities.

For example, many top results for “best running shoes for flat feet” give a budget option:

Many first-page results for "best running shoes for flat feet" talk about the best budget option
Many first-page results for "best running shoes for flat feet" talk about the best budget option

Check the keyword rankings of top-ranking pages

Pages often rank for keywords related to the subtopics they cover. If you see many top pages ranking for these keywords, it’s probably an important subtopic to cover.

Here’s how to find these keywords:

  1. Go to the Competitive Analysis tool in Ahrefs
  2. Enter your page’s URL in the “This target doesn’t rank for” field. (If you haven’t published your page yet, enter the URL you plan to use.)
  3. Enter the URLs of a few similar top-ranking pages in the “But these competitors do” fields
  4. Look for keywords that represent subtopics

For example, the top three results for “best running shoes for flat feet” also rank in the top 10 for many keywords related to men and women’s shoes:

Keyword rankings for top-ranking pages often reveal important subtopicsKeyword rankings for top-ranking pages often reveal important subtopics

This tells you that the best picks for men and women is an important subtopic to include.

Find subtopics with the help of AI

It’s currently in beta, but the new AI Content Grader in Ahrefs finds “missing” subtopics. It does this by comparing the content of the three top-ranking pages for your target keyword to your content.

To use it, just enter your target keyword and your page’s URL. (If you haven’t published your page yet, enter the URL you plan to use).

For example, here’s one of its suggestions for the keyword “best running shoes for flat feet”:

Advertisement
AI suggestions for subtopics to include, via Ahrefs' Content GraderAI suggestions for subtopics to include, via Ahrefs' Content Grader

Information gain is a measure of how unique your content is. Google describes a mechanism for scoring this in a patent granted in June 2022.

Two months later, in August 2022, Google launched the helpful content update, which they described as “part of a broader effort to ensure people see more original, helpful content written by people, for people, in search results.”

Are these two things related? Nobody knows. But what we do know is that Google cares about the originality of your content, and almost certainly has mechanisms in place for identifying it. 

This means that covering what other top-ranking pages cover isn’t enough for a well-optimized page. It also needs to bring something new and valuable to the table.

For example, my colleague Chris collected data on how folks deal with low-quality backlinks for his post on removing backlinks:

Research Chris did for his post on removing backlinksResearch Chris did for his post on removing backlinks

Ryan interviewed three B2B marketers for unique insights for his post on B2B content marketing:

Research Ryan did for his post on B2B content marketingResearch Ryan did for his post on B2B content marketing

And I worked with Patrick Stox to create an interactive workflow and template for my content audit guide:

Template I made for my post on how to do a content auditTemplate I made for my post on how to do a content audit

None of these posts are completely unique. They contain plenty of information that you can probably find elsewhere—and that’s fine. What matters is that we’re bringing at least something new to the table.

Advertisement

Google’s algorithms are designed to surface content that demonstrates E-E-A-T: Experience, Expertise, Authority, and Trust.

If you’re an expert in your field or crafted your content from personal experience, your page already has E-E-A-T. But searchers aren’t going to know that without reading it, so you should try to showcase it as obviously as you can on the page. Let’s look at two ways to do this.

Flash your credentials

Healthline does this extremely well. The very first thing you see on their page about rheumatoid arthritis is that the content was reviewed by a rheumatologist:

Healthline flashes author's credentials right in the introHealthline flashes author's credentials right in the intro

Put your uniqueness front and center

If you’ve put time and effort into adding “information gain” to your content, don’t bury it. Make sure searchers see it right away so they know they can trust you.

For example, to curate our list of the best Facebook groups for SEOs, we asked the 12K+ members of our customer-only group to vote for their favorites. Instead of burying this fact deep in the post, we highlighted it in the very first paragraph.

Always put your uniqueness front and centerAlways put your uniqueness front and center

For a page to earn backlinks (which are a strong ranking factor) and shares, people have to actually consume the content. This isn’t going to happen if the copy is hard to read.

You can use free tools like Hemingway and Grammarly to fix this.

For example, Hemingway gives my recent guide to toxic backlinks a reading grade level of 7:

Advertisement
Use tools like Hemingway and Grammarly to improve readabilityUse tools like Hemingway and Grammarly to improve readability

Given that 54% of Americans lack literary proficiency (essentially reading below the equivalent of a sixth-grade level), this means we’re alienating at least 46% of readers. If we could bring the reading grade level down, more people would be able to read it.

Sidenote.

This isn’t absolutely necessary for every topic. It depends on who your audience is. If they’re technical folks, don’t worry about it. But if you’re publishing content for the masses, accessibility matters.

Here are a few more tips to improve readability:

  • Use short sentences and paragraphs
  • Use bulleted lists
  • Use images

Featured snippets give searchers a short answer right in the search results.

Featured snippets in search resultsFeatured snippets in search results

But here’s the cool thing: Google pulls the snippet from one of the top-ranking pages. This means that if your page already ranks in the top 10 for keywords where Google shows a featured snippet, there might be an opportunity to steal it without much effort.

This is exactly what I managed to do a couple of months ago, which led to a ~38.9% jump in estimated search traffic to our page:

Traffic improvement of 38.9% by optimizing for featured snippetsTraffic improvement of 38.9% by optimizing for featured snippets

Here’s what happened:

In Ahrefs’ Site Explorer, I used the Organic Keywords report to find the page’s top 10 keyword rankings with featured snippets we didn’t own.

Advertisement
How to find featured snippet opportunitiesHow to find featured snippet opportunities

Right away, I noticed a trend: many of the keywords were people searching for the most searched thing in Google (singular) rather than a list of top searches (plural):

Example of an obvious opportunity to optimize for featured snippetsExample of an obvious opportunity to optimize for featured snippets

After searching for a few of these keywords in Google, I saw that the snippet was pretty much always pulled from this very short paragraph in a competing post:

Example of copy Google was using for a featured snippetExample of copy Google was using for a featured snippet

So… I added a similar paragraph to our post (using our data instead):

The copy I added to our page to optimize for featured snippetsThe copy I added to our page to optimize for featured snippets

This quick big of on-page SEO won our page 163 more featured snippets:

Results of optimizing - 163 more featured snippetsResults of optimizing - 163 more featured snippets

Images on your page can rank in Google Images and send you more traffic. There are three things you need to do to optimize them.

Filenames are descriptive

Google says that these give clues about the subject matter, so avoid random file names like IMG_5497.jpg in favor of something short and descriptive like brown-dog.jpg.

How to name image files for SEOHow to name image files for SEO

Alt text is present and descriptive

Google also says that image alt text helps them understand subject matter, so the same rules apply as filenames: keep them short and descriptive.

How to write alt text for SEOHow to write alt text for SEO

Most content management systems have a place to add alt text in the UI, so there’s no need to mess around with HTML:

Most CMS's make it easy to add alt textMost CMS's make it easy to add alt text

Images are compressed

Compressed images are smaller and faster to load. Some platforms like Shopify claim to do this automatically, but the results aren’t always great. It’s generally better to employ the help of a plugin like TinyIMG or Shortpixel.

Internal links are links from one page on your site to another. They help Google understand what a page is about and boost its authority, which can lead to higher rankings.

For this reason, when you publish a new page, it pays to internally link from there to other relevant pages. This won’t help the new page’s rankings, but it might help the rankings of the pages you internally link to.

To find relevant opportuntities, use Ahrefs’ Site Audit:

  1. Go to the Internal Link Opportunities tool
  2. Enter the URL of your newly-published page in the search box
  3. Choose “Source page” from the dropdown
How to find internal linking opportunitiesHow to find internal linking opportunities

Sidenote.

Site Audit needs to have crawled your site since you published the new page, otherwise this won’t work.

Advertisement

Pay attention to these columns:

  • Source page → your newly-published page, where you will add the link
  • Keyword context → where on the page to add the link
  • Target page → where to link to

For example, here the report is suggesting that I link from my post on toxic backlinks to our bad links guide:

Example of an internal linking opportunityExample of an internal linking opportunity

Citing valuable resources is helpful for readers. Even Google says so.

Does that mean it’s a “ranking factor?” No. But it does improve your content’s credibility with readers, and that can impact things that do matter like links and shares.

This is something we regularly do on the Ahrefs blog:

Example of us linking to sources on the Ahrefs blogExample of us linking to sources on the Ahrefs blog

If you’re trying to boost the rankings of the page you’re optimizing, you’ll want to add internal links to it from other pages on your site.

To find relevant opportunities, use Ahrefs’ Site Audit:

Advertisement
  1. Go to the Page Explorer tool
  2. Enter your target keyword (or part of it) in the search box
  3. Choose “Page text” from the dropdown
How to find internal linking opportunities on other pagesHow to find internal linking opportunities on other pages

This will find pages on your site that mention your target keyword, which may be good places to add internal links.

For example, it tells us that our guide to removing backlinks mentions the word “toxic”:

Example internal linking opportunityExample internal linking opportunity

If we search that page, this is the mention:

Perfect place to add an internal linkPerfect place to add an internal link

That looks like the perfect place to internally link to our guide to toxic backlinks.

Schema markup is code that helps search engines understand the information on a page. It also powers many rich snippets you see in Google, which can lead to more clicks.

What rich results look likeWhat rich results look like

If you’re not sure whether schema markup is worth prioritizing for your page, search for your main target keyword in Google and look at the top results. If all or many are rich results, it’s probably worth adding it.

Most of the results for this term show rich snippets, so it's probably worth optimizing for themMost of the results for this term show rich snippets, so it's probably worth optimizing for them

If you use WordPress, you can easily add schema with a plugin like Yoast or RankMath. Alternatively, use a tool like Merkle’s Schema Markup Generator to generate the JSON-LD code yourself and add it manually.

Keep learning

Check out even more of our on-page SEO resources:

Source link

Advertisement
Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

Trending

Follow by Email
RSS