Disclaimer: The website referenced on this page has been censored to respect their privacy. Beacuse this article is solely for educational purposes. It will be called as Domain A and Domain 

Assessment Area

There are three different area of SEO assessment.

  • Technical SEO : Focus on the scaleability and indexability part. Google has published an extensive guide regarding their crawling method and the back factor behind it. Some critical area that need to be assessed on this part: Sitemap, robots.txt and performance (via Chrome lighthouse)

below are the documentation

https://developers.google.com/search/docs/essentials
  • On Page SEO : Search engine will look for specific HTML tags / Website Semantics or syntax to identify the content such as : Header, Meta Tags, Number of word on the article, Quality of the article and keyword usage
  • Off Page SEO : More releated with go to market strategy (GTM). Usually its involing campaign, number of backlink, integrated social media and domain authority

Responsibility segregation

Technical SEO and On page SEO should be resposinbility of technical team while Off page SEO is generally should be done by agency/content marketing team.

Example Of Search Engine Optimization (SEO) Assessment

Assessment will focus on the performance area of target website.

Assessment Starting Point

There are several factor of SEO Capability on a website such as : Secured domain (HTTPS), response time until the page is fully loaded, etc. In order to assessment all those stuff would be tricky because there is no official parameter that published by google. They only provide hint (not disclosing the parameter used in teh crawling and indexing algorithm). Hence, SEO optimization is semi guessing.

There are lot of SEO Assessment tools out there, using official tools from google would be good start.

However, as starting point, google already provided two powerful tools to assessment the SEO capability of a websites. Chrome Lighhouses for performance related and GSC (Google search console) for crawling/indexing related.

there are B2C (Business to Customer) that will be assessed through out the article.

NoWebsiteDescription
1Website XNewspage
2Website YE-Commerce

Quick Performance Assessment on Website X

postimage100Google Chrome Lighthouse assessment Result for Website X

Check if a website is using MPA or SPA

curl -I https://websitex.com

to find whether a web is using traditional multi page application like PHP CI/Lararavel/Django or single page application can be done by inspecting the request responses.

postimage100Check server response to find out server side authentication validation

As shown on the image above, website X request response is returning cookie data and csrf parameter. These are strong indicator that the backend will check and validate browser session.

Performance Matrix Breakdown

postimage100Performance Metrix Breakdown for Website X

Website X definitely need some improvement

  • FCP (First Contentful Paint) 4 Second

FCP is the time needed before browser to render first piece of element on the DOM. If it took 4 second to render first element, most likely user will close the website before the loading even completed. A huge loss.

  • Speed Index 23.3 Second

A relative time (in average) taken by browser to load of all the element. Usually user will stay on the page if most of the content (especially the critical one) has been loaded. 23.3 second to load everything is too long. definitely need an improvement.

  • Largest Contentful Paint 10.8 Second

Indicating biggest resources loading time. On Website X case is uncompressed image with size of more than 3 Megabytes.

  • Cummulative Layout Shift 0.854

How long some of the DOM element are jumbled and moving. Not really important parameter. It just an indicator that some element might be move up and down during the resource loading chain. Lower is definitely better for user Experiences.

RailWay

postimage100Assets Loading Railway

Website X has very long runway (up to 160K MS which is equivalent to 160 second). Usually this is andication of ineffective resource loading.

Good Part

Context: Performance related 
  • CDN (Content delivery network) is used to serve the asset / kilatstorage.id
  • Responsive Web Design (RWD)
  • HTTP Compression (GZip)

Findings for website X

Indicator : 10 Mb Page Size (Big e-commerce such as tokopedia, bukalapak, blibli at most only has 250 kb page size). Bigger page size equal to slow loading time.

Perspective: Performance on Niche Newspage B2C website that focus on ORGANIC Traffic. Every milisecond is matters.

Risk Register on Performance Assessment

NoSeverityDescriptionImpact
1LowSemantic ErrorDegraded SEO Crawling efficiency
2Medium 1Console warningsSlightly increases page size and parsing time
3Medium 2Render BlockingPrevent user to click/open the website or continue the user joureny; Cause ranking drops
4HighContent doesnt load (404/403/5xx)Prevent user to click/open the website; Cause ranking drops

Below is the findings based on defined risk register above.

NoTypeFindingsDescriptionSeverity
P1Performance / Architectural(Landing/Category Page) API based content renderingContent is served via Jquery Ajax(API Call/XHR/Fetch) before rendered to the frontend. Jquery(jquery.min) base library itself has big size +- 100 kbMedium 2
P2Performance / Architectural(Article Detail) Server Side renderingArticle is rendered server side (apache, csrf token/authorization)Medium 2
P3PerformanceNo Images lazy loadAll images on the whole pages are loaded at onceLow
P4PerformanceUncompresed ImageImage file is too bigMedium 2
P5PerformanceNon performance optimized image formatImage still use png / jpegMedium 1
P6PerformanceUnminified Css & JSRaw JS/CSS being loadedLow
P7PerformanceJS Console erroresource 403, syntax errorLow

Recommendation for website X

NoFindings#Recommendation
R1P1, P2Move from Traditional MPA (Multi page application) to Hybrid Stack. Public Page::SSG (static site generation) Authenticated Page::CSR (Client Side Rendering)
R2P7Apply image lazy laod on all pages and strategize the shimmering
R3P4Compress image before publish as low as possible without too much quality reduction. low to mild compression for web and huge compression for mobile
R4P5use AVIF and WebP (fallback if the user browser not support AVIF)
R5P6Minify JS and CSS
R6P7Fix JS Error

Quick Performance Assessment on Website Y

postimage100Google Chrome Lighthouse assessment Result for Website Y

Metrics Breakdown

postimage100Performance Metrix Breakdown for Website Y

Website X has very long runway (up to 160K MS which is equivalent to 160 second). Usually this is andication of ineffective resource loading.

Website X has very long runway (up to 1000K MS which is equivalent to 1K second). Usually this is andication of ineffective resource loading.

RailWay

postimage100Assets Loading Railway

Good Part

Context: Performance related 
  • VueJS SPA (Single page application) with Pre Render / SSR
  • Responsive Web Design (RWD)
  • HTTP Compression (GZip)

Findings for website Y

POV: E-commernce (not heavily relied on organic user; need actual data to validate)

Indicator : 9 mb page size

NoTypeFindingsDescriptionSeverity
P1PerformanceNo CDNAll images hosted on same server with the appsLow
P2PerformanceNo Images lazy loadAll images on the whole pages are loaded at onceLow
P3PerformanceUncompresed ImageImage file is too bigMedium 2
P4PerformanceNon performance optimized image formatImage still use png / jpegMedium 1
P5PerformanceUnminified Css & JSRaw JS/CSS being loadedLow
P6PerformanceJS Console erroresource 403, syntax errorLow

Recommendation for website Y

NoFindings#Recommendation
R1P1Store Assets to CDN
R2P2Apply image lazy laod on all pages and strategize the shimmering
R3P3Compress image before publish as low as possible without too much quality reduction. low to mild compression for web and huge compression for mobile
R4P4use AVIF and WebP (fallback if the user browser not support AVIF)
R5P5Minify JS and CSS
R6P6Fix JS Error

Findings Double Click

Image format

postimage100Youtube’s thumbnail images is formatted in AVIF

a big apps such as youtube already use AVIF(AV1 Image file format) instead of traditional jpeg/png to display their thumbnail. AVIF is called as next generation image format for some reasons.

  1. Better compression ratio. AVIF has smaller file size (after compression) compared with jpeg (same quality).
  2. a fusion of GIF and PNG. AVIF beaucse it support animation AVIF support transparancy.
  3. Wider color gamut range. AVIF can support up to 12 bit color, BT.2020 and HDR10).