Page summary

https://www.aecdaily.com/

Tested using Chrome 94.0.4606.54 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Third party axeSustainable Web
| Summary | | Download log | Download Video | Download Timeline Log | Download HAR | 

Summary

MetricValue
Performance Score54
Total Page Transfer Size6.6 MB
Requests80
TTFB [median]617 ms
Fully Loaded [median]35.713 s
First Visual Change [median]3.567 s
First Contentful Paint (FCP) [median]2.586 s
Largest Contentful Paint (LCP) [median]5.428 s
Cumulative Layout Shift (CLS) [median]0.21
Total Blocking Time [median]1.157 s
Max Potential FID [median]295 ms
CPU long tasks [median]14
CPU longest task duration295 ms
Speed Index [median]5.550 s
Visual Complete 85% [median]6.017 s
Visual Complete 99% [median]11.867 s
Last Visual Change [median]11.983 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange3.567 s3.567 s3.567 s3.567 s
LastVisualChange11.983 s11.983 s11.983 s11.983 s
SpeedIndex5.550 s5.550 s5.550 s5.550 s
LargestImage11.983 s11.983 s11.983 s11.983 s
LastMeaningfulPaint11.983 s11.983 s11.983 s11.983 s
VisualReadiness8.416 s8.416 s8.416 s8.416 s
VisualComplete856.017 s6.017 s6.017 s6.017 s
VisualComplete9511.750 s11.750 s11.750 s11.750 s
VisualComplete9911.867 s11.867 s11.867 s11.867 s
RUM Metrics
TTFB617 ms617 ms617 ms617 ms
LCP5.428 s5.428 s5.428 s5.428 s
FCP2.586 s2.586 s2.586 s2.586 s
firstPaint2.586 s2.586 s2.586 s2.586 s
loadEventEnd5.611 s5.611 s5.611 s5.611 s
CLS0.21050.21050.21050.2105
CPU
Total Blocking Time1.157 s1.157 s1.157 s1.157 s
Max Potential FID295 ms295 ms295 ms295 ms
CPU long tasks 14141414
| Waterfall | | Download HAR | 

Waterfall

Run 1 SpeedIndex median

Choose HAR:

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
1 sCPU Long Task duration 75 ms
2.2 sCPU Long Task duration 97 ms
2.3 sCPU Long Task duration 249 ms
2.6 sFirst Contentful Paint 2.586 sCPU Long Task duration 295 ms
2.9 sLayout Shift 0.00125 2.876 s
3 sDOM Content Loaded Time 2.974 s
3.1 sCPU Long Task duration 172 ms
3.3 sCPU Long Task duration 64 msLayout Shift 0.01949 3.230 sCPU Long Task duration 156 ms
3.5 sLayout Shift 0.18971 3.456 sCPU Long Task duration 167 ms
3.6 sFirst Visual Change 3.567 s
3.8 sCPU Long Task duration 169 ms
3.9 sLayout Shift 0.00001 3.897 s
4.1 sCPU Long Task duration 152 ms
4.4 sCPU Long Task duration 120 ms
4.5 sCPU Long Task duration 190 ms
4.6 s
4.8 s
4.9 s
5.3 s
5.4 s
5.5 sLCP <IMG> 5.428 s
5.7 sPage Load Time 5.604 s
6 s
6.1 sVisual Complete 85% 6.017 s
6.2 s
7.4 s
7.5 s
7.6 s
11.5 s
11.6 s
11.7 s
11.8 sVisual Complete 95% 11.750 s
11.9 sVisual Complete 99% 11.867 s
12 sLast Visual Change 11.983 sLargest Image 11.983 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices.

I am the coach

Coach score

Performance advice (54)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 17 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.0
Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
Offenders:
Avoid slowing down the critical rendering path (fastRender)The page has 17 render blocking CSS requests and 15 blocking JavaScript requests inside of head.0
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS or use server push for really fast rendering and a short rendering path.
Offenders:
Inline CSS for faster first render (inlineCss)The page has both inline styles as well as it is requesting 17 CSS files inside of the head. Let's only inline CSS for really fast render.90
Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
Offenders:
Avoid CPU Long Tasks (longTasks)The page has 14 CPU long tasks with the total of 2128 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your Long Task.0
Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using.
Offenders:
  • self
  • self
  • unknown
  • unknown
  • self
  • unknown
  • self
  • self
  • unknown
  • unknown
  • unknown
  • self
  • self
  • unknown
Avoid Frontend single point of failures (spof)The page has 13 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.70
Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.
Offenders:
Avoid extra requests by setting cache headers (cacheHeaders)The page has 14 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 99 kB the next access.0
Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
Offenders:
Long cache headers is good (cacheHeadersLong)The page has 59 requests that have a shorter cache time than 30 days (but still a cache time).41
Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
Offenders:
Always compress text content (compressAssets)The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead.90
Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
Offenders:
Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 134.3 kB and uncompressed size is 651.1 kB. That is big and the CSS could most probably be smaller.0
Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore.
The favicon should be small and cacheable (favicon)The favicon size is 15.1 kB bytes. That's quite big, can you make it smaller? The favicon has no cache time. 0
Description: It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type.
Offenders:
Avoid too many fonts (fewFonts)The page has 2 font requests. Do you really need them? What value does the fonts give the user?80
Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
Offenders:
Total image size shouldn't be too big (imageSize)The page total image size is 5 MB. It's really big. Is the page using the right format for the images? Are they compressed as good as they can be? Make them smaller by using https://imageoptim.com/.50
Description: Avoid having too many large images on the page. The images will not affect the first paint of the page, but it will eat bandwidth for the user.
Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 443.1 kB and the uncompressed size is 1.2 MB. This is totally crazy! There is really room for improvement here. 0
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
Avoid using incorrect mime types (mimeTypes)The page has 4 misconfigured mime types. 96
Description: It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk.
Offenders:
Make each CSS response small (optimalCssSize)https://static.aecdaily.com/fontawesome_pkgs/fontawesome-pro-6.5.2-web/css/all.min.css size is 102.5 kB (102458) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.90
Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
Offenders:
Total page size shouldn't be too big (pageSize)The page total transfer size is 6.9 MB, which is more than the coach limit of 2 MB. That is insane and you need to make it smaller.0
Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
Don't use private headers on static content (privateAssets)The page has 2 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.80
Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
Offenders:

Best practice advice (86)

TitleAdviceScore
Declare the language code for your document (language)The page is missing a language definition in the HTML tag. Define it with <html lang="YOUR_LANGUAGE_CODE">0
Description: According to the W3C recommendation you should declare the primary language for each Web page with the lang attribute inside the <html> tag https://www.w3.org/International/questions/qa-html-language-declarations#basics.
Cumulative Layout Shift (layoutShift)You have elements that shift. You should manually check the filmstrip or video and check if it will affect the user.79
Description: Cumulative Layout Shift measures the sum total of all individual layout shift scores for every unexpected layout shift that occurs during the entire lifespan of the page. A layout shift occurs any time a visible element changes its position from one rendered frame to the next.
Offenders:
Avoid Unnecessary Headers (unnecessaryHeaders)There are 3 responses that sets a p3p header. There are 7 responses that sets both a max-age and expires header. There are 9 responses that sets a pragma no-cache header (that is a request header). There are 80 responses that sets a server header. 1
Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
Offenders:

Privacy advice (68)

TitleAdviceScore
Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
Offenders:
Set a permission policy header that opt out your users being tracked in Chrome by FLoC. (disableFLoCHeader)Set a permission policy header that opt out Chrome for tracking what your users do on your site.0
Description: Googles new tracking method is called Federated Learning of Cohorts (FLoC) and it groups you based on your interests and demographics, derived from your browsing history, to enable creepy advertising and other content targeting without third-party cookies. You can avoid that by setting a Permissions-Policy header with the value of interest-cohort=(). See https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea.
Offenders:
Avoid using Google reCAPTCHA (googleReCaptcha)You share your user data with Google since you use Google reCAPTCHA.0
Description: You should avoid using Google reCAPTCHA since it will share your users information with Google.
Offenders:
Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
Offenders:
Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader)A strict transport header is set but miss out on setting includeSubDomainsThe max age is lower than six months. Increase it to get a better score.70
Description: The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.
Do not share user data with third parties. (thirdPartyPrivacy)The page has 3% requests that are 3rd party (2 requests with a size of 279 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 1 utility request and uses 1 utility tool. The page do 2 survelliance requests and uses 2 survelliance tools.0
Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.
Offenders:

Page info

Page info
TitleAEC Daily - Free Continuing Education
Width1350
Height2580
DOM elements805
Avg DOM depth10
Max DOM depth13
Iframes0
Script tags29
Local storage0 b
Session storage0 b
HTML vs AMPPlain good HTML page
Resource Hints
preconnect
https://fonts.bunny.net/
https://static.aecdaily.com/

Technologies used to build the page.

Data collected using Wappalyzer.  Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyser find more information about technologies used.

TechnologyConfidenceCategory
PHP 8.1.29100  Programming languages
Apache 100  Web servers
reCAPTCHA 100  Security
jQuery 100  JavaScript libraries
OWL Carousel 100  Widgets
FancyBox 100  JavaScript libraries

Data collected using Third Party Web.

Utility
Other Google APIs/SDKs
Survelliance
Other Google APIs/SDKs
Google CDN
Cdn
Google CDN
| Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Visual Elements | Metrics from CDP | 

Visual Metrics

Browser Metrics

Largest Contentful Paint

When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

Element typeIMG
Element/tag<img data-src="https://sizer.aecdaily.com/0x380/res/marketing_images/925265/v5_amvic.png" alt="Commercial Design and Construction with Insulated Concrete Form (ICF)" title="Commercial Design and Construction with Insulated Concrete Form (ICF)" class="owl-lazy" src="https://sizer.aecdaily.com/0x380/res/marketing_images/925265/v5_amvic.png" style="opacity: 1;">
Render time 5.428 s
Load time5.428 s
URL https://sizer.aecdai...5265/v5_amvic.png
Size (width*height)315010
DOM path
div:eq(1) > div#left-container > div:eq(0) > div > div:eq(0) > div > div:eq(5) > div > img> div:eq(1) > div#left-container > div:eq(0) > div > div:eq(0) > div > div:eq(5) > div > img>
LCP

The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

The Largest Contentful Paint API highlighted this image as a part of the LCP.

LCP

Detected Cumulative Layout Shift

0.21047 cumulative layout shift collected from the Cumulative Layout Shift API.

These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

ScoreHTML Element
0.18971<div id="" class="column12 omega"></div>,<img loading="lazy" src="https://sizer.aecdaily.com/420x0jpg/res/marketing_images/1065274/Dupont04.png" alt="Prioritizing Performance for Building Enclosures (Recorded Webinar)" title="Prioritizing Performance for Building Enclosures (Recorded Webinar)">,<img loading="lazy" src="https://sizer.aecdaily.com/420x0jpg/res/marketing_images/802273/v5_cmha_icpi01.png" alt="Structural Design of Interlocking Concrete Pavers for Municipal Streets and Roadways" title="Structural Design of Interlocking Concrete Pavers for Municipal Streets and Roadways">,<img loading="lazy" src="https://sizer.aecdaily.com/420x0jpg/res/marketing_images/848960/v5_kingspan08_2.png" alt="Designing with Architectural Insulated Metal Panels" title="Designing with Architectural Insulated Metal Panels">,<img loading="lazy" src="https://sizer.aecdaily.com/420x0jpg/res/marketing_images/853451/v5_durolast03.png" alt="Thermoplastic Roofing: Materials &amp; Systems" title="Thermoplastic Roofing: Materials &amp; Systems">
body > div:eq(1) > div#left-container > div:eq(1),body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(0) > a > div > div > img,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(1) > a > div > div > img,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(2) > a > div > div > img,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(3) > a > div > div > img
0.01949<div class="visual buttons center"></div>,<div class="visual buttons center"></div>,<p class="description-featured"></p>,<div class="visual buttons center"></div>,<div class="visual buttons center"></div>
body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(0) > div,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(3) > div,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(3) > a > div > p:eq(2),body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(1) > div,body > div:eq(1) > div#left-container > div:eq(1) > div > div > div:eq(2) > div
0.00125<div id="full-header-container-inner" class="container12"></div>,<div id="top-nav-container" class="container12"></div>
body > div#full-header-container > div#full-header-container-inner,body > div#full-header-container > div#top-nav-container
0.00001<button type="submit" class="top-nav-search-button" id=""></button>
body > div#full-header-container > div#full-header-container-inner > div#header > div:eq(1) > div > form#search-aec-topnav > button
Layout shift

The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

Server timings

There are no Server Timings.

Custom metrics collected through JavaScript

There are no custom configured scripts.

Extra metrics collected using scripting

There are no custom extra metrics from scripting.

CDP Performance

namevalue
AudioHandlers0
Documents1
Frames1
JSEventListeners112
LayoutObjects1559
MediaKeySessions0
MediaKeys0
Nodes2091
Resources81
ContextLifecycleStateObservers3
V8PerContextDatas1
WorkerGlobalScopes0
UACSSResources0
RTCPeerConnections0
ResourceFetchers1
AdSubframes0
DetachedScriptStates0
ArrayBufferContents0
LayoutCount33
RecalcStyleCount115
LayoutDuration806
RecalcStyleDuration270
DevToolsCommandDuration54
ScriptDuration725
V8CompileDuration3
TaskDuration3767
TaskOtherDuration1909
ThreadTime1
ProcessTime3
JSHeapUsedSize4398484
JSHeapTotalSize5484544
FirstMeaningfulPaint3110

Visual Elements

NameDisplay TimeX YWidthHeight
LargestImage (v5_dunnedwards07.png)11.983 s 115 168 1120 380
<img data-src="https://sizer.aecdaily.com/0x380/res/marketing_images/921687/v5_dunnedwards07.png" alt="Biophilic Design and Architectural Coatings" title="Biophilic Design and Architectural Coatings" class="owl-lazy" src="https://sizer.aecdaily.com/0x380/res/marketing_images/921687/v5_dunnedwards07.png" style="opacity: 1;">
| Summary  | Largest responses  | Requests and sizes per content type  | Size and requests per domain  | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

PageXray

How the page is built.

Summary
HTTP versionHTTP/1.1
Total requests80
Total domains9
Total transfer size6.6 MB
Total content size7.9 MB
Responses missing compression28
Number of cookies3
Third party cookies0
Requests per response code
20079
2041

Largest assets on the page (by transfer size)

Requests and sizes per content type

ContentHeader SizeTransfer SizeContent SizeRequests
html1.3 KB13.0 KB87.7 KB4
css7.1 KB131.1 KB635.8 KB17
javascript9.1 KB432.7 KB1.1 MB24
image8.0 KB4.7 MB4.7 MB26
font0 b24.5 KB23.1 KB2
other1.2 KB1.3 MB1.3 MB4
json392 B997 B858 B1
plain370 B452 B452 B1
favicon412 B14.7 KB14.7 KB1
Total27.9 KB6.6 MB7.9 MB80

Size and requests per domain

DomainHeader SizeTransfer SizeContent SizeRequests
www.aecdaily.com11.6 KB90.3 KB334.1 KB25
static.aecdaily.com5.9 KB1.5 MB2.1 MB16
fonts.bunny.netN/A25.8 KB29.2 KB3
infodata.aecdaily.com1.3 KB1.1 KB2.1 KB4
www.google.comN/A1.4 KB1.4 KB1
simages.aecdaily.com1.3 KB40.3 KB40.1 KB4
matomo.aecdaily.com788 B40.5 KB133.2 KB3
sizer.aecdaily.com7.1 KB4.6 MB4.6 MB23
www.gstatic.comN/A271.1 KB637.4 KB1

Expires and last modified statistics

typeminmedianmax
Expires0 seconds2 hours1 year
Last modified4 days1 year12 years

Requests loaded after onLoad event

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript0 b0
image2.5 MB6
font0 b0
json997 B1
plain452 B1
favicon14.7 KB1
Total2.5 MB9

Requests loaded after onContentLoad

Includes requests done after onLoad.

ContentTransfer SizeRequests
html90 B3
css0 b0
javascript120 B1
image4.4 MB19
font0 b0
other116.1 KB1
json997 B1
plain452 B1
favicon14.7 KB1
Total4.6 MB27

Render blocking requests

Render blocking information directly from Chrome.

BlockingIn body parser blockingPotentially blocking
3132

Render information

URLType
https://static.aecda...duotone-900.woff2non_blocking
https://static.aecda...regular-400.woff2non_blocking
https://static.aecda...a-solid-900.woff2non_blocking
https://www.gstatic..../recaptcha__en.jsnon_blocking
https://static.aecda...-brands-400.woff2non_blocking
https://static.aecda...b/css/all.min.cssblocking
https://matomo.aecdaily.com/matomo.jsnon_blocking
https://static.aecda...uery-3.7.1.min.jsblocking
https://www.aecdaily...query.fancybox.jsblocking
https://static.aecda...opentip-jquery.jsblocking
https://fonts.bunny....-700-normal.woff2non_blocking
https://static.aecda.../flatpickr.min.jsblocking
https://fonts.bunny....-400-normal.woff2non_blocking
https://static.aecda....1/parsley.min.jsblocking
https://www.aecdaily...l.carousel.min.jsblocking
https://static.aecda...y.validate.min.jsblocking
https://www.aecdaily...y.autocomplete.jsblocking
https://www.aecdaily...css/fluid_olc.cssblocking
https://www.aecdaily...2715/css/base.cssblocking
https://simages.aecd...ch/aecdailyjs.phppotentially_blocking
https://www.aecdaily...6728/css/menu.cssblocking
https://www.aecdaily...ookies/cookies.jsin_body_parser_blocking
https://static.aecda...flatpickr.min.cssblocking
https://www.aecdaily...uid_form_temp.cssblocking
https://www.aecdaily...9191/css/1140.cssblocking
https://static.aecda...ery.modal.min.cssblocking
https://www.aecdaily...cript/main_aec.jsblocking
https://static.aecda...uery.modal.min.jsblocking
https://www.aecdaily...uery.fancybox.cssblocking
https://www.google.com/recaptcha/api.jspotentially_blocking
https://www.aecdaily.../css/fluid_sc.cssblocking
https://fonts.bunny....nts.bunny.net/cssblocking
https://static.aecda...6/css/opentip.cssblocking
https://www.aecdaily....carousel.min.cssblocking
https://www.aecdaily...4/css/parsley.cssblocking
https://www.aecdaily...id_transcript.cssblocking
https://www.aecdaily...query-aecdaily.jsblocking
https://www.aecdaily...e.default.min.cssblocking
https://infodata.aec...js/postreport.phpnon_blocking
https://www.aecdaily...ddRemoveCourse.jsblocking
https://www.aecdaily...ddRemoveCourse.jsin_body_parser_blocking
https://infodata.aec.../js/abchecker.phpin_body_parser_blocking
https://www.aecdaily...ipt/global.js.phpblocking
https://www.aecdaily...ript/jumpToTop.jsblocking
https://static.aecda.../fa-aec-icons.cssblocking
https://infodata.aecdaily.com/js/dfp.jsnon_blocking
https://matomo.aecda...rding/configs.phpnon_blocking
| CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

CPU

Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

Long Tasks

Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

TypeQuantityTotal duration (ms)
Total Blocking Time 1157
Max Potential First Input Delay 295
Long Tasks before First Paint3421
Long Tasks before First Contentful Paint3421
Long Tasks after Load Event End2222
Total Long Tasks142128

Individual Long Tasks

namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
self94775window
self217697window
unknown2288249window
unknown2598295window
self3052172window
unknown322564window
self3290156window
self3480167window
unknown3776169window
unknown4098152window
unknown4302120window
self4432190window
self1292170window
unknown39619152window

CPU time spent

Calculated using Tracium.

Categories (ms)
parseHTML258
styleLayout1078
paintCompositeRender752
scriptParseCompile4
scriptEvaluation745
garbageCollection70
other820
Events (ms)
Layout805
RunTask731
V8.Execute637
CompositeLayers338
UpdateLayoutTree273
UpdateLayerTree214
Paint170
ParseHTML169
ParseAuthorStyleSheet90
V8.GC_MC_INCREMENTAL_EMBEDDER_TRACING35
V8.RunMicrotasks31
v8.callFunction28
V8.GC_HEAP_EPILOGUE_REDUCE_NEW_SPACE25
V8.BytecodeBudgetInterrupt23
TimerFire21
UpdateLayer19
V8.NewContext13
V8.GC_MC_INCREMENTAL12
V8.GC_HEAP_EMBEDDER_TRACING_EPILOGUE11
FunctionCall10

Time spent per request

URLCPU time (ms)
https://static.aecdaily.com/jquery/jquery-3.7.1.min.js567
https://www.gstatic.com/recaptcha/releases/Hi8UmRMnhdOBM3IuViTkapUP/recaptcha__en.js186
https://matomo.aecdaily.com/matomo.js168
https://www.google.com/recaptcha/api.js29
https://www.aecdaily.com/12

CPU time spent

Tool/domainTime (ms)
static.aecdaily.com566.6
Google CDN186.5
matomo.aecdaily.com168.1
Other Google APIs/SDKs29.3
www.aecdaily.com12.3
| Categories | | Tools | | First vs third | 

Third party

Third party requests categorised by Third party web.

CategoryRequests
utility 1
survelliance 2
cdn 1
CategoryNumber of tools
utility 1
survelliance 2
cdn 1

Third party requests and tools

utility (1 requests)
Other Google APIs/SDKs
survelliance (2 requests)
Other Google APIs/SDKs
Google CDN
cdn (1 requests)
Google CDN

Unmatched third party domains

Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty.

fonts.bunny.net

First party requests and sizes per content type

Calculated using .*aecdaily.* (use --firstParty to configure).

ContentHeader SizeTransfer SizeContent SizeRequests
html1.3 KB13.0 KB87.7 KB4
css7.1 KB129.8 KB629.7 KB16
javascript9.1 KB160.2 KB538.3 KB22
image8.0 KB4.7 MB4.7 MB26
font0 b0 b0 b0
other1.2 KB1.3 MB1.3 MB4
json392 B997 B858 B1
plain370 B452 B452 B1
favicon412 B14.7 KB14.7 KB1
Total27.9 KB6.3 MB7.2 MB75

Third party requests and sizes per content type

ContentHeader SizeTransfer SizeContent SizeRequests
html0 b0 b0 b0
css0 b1.3 KB6.2 KB1
javascript0 b272.5 KB638.8 KB2
image0 b0 b0 b0
font0 b24.5 KB23.1 KB2
TotalN/A298.3 KB668.1 KB5

Axe

Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Read more about axe-core.

Violations

Median number of violations for all the runs. Check each individual run to see all the violations.

TypeViolations (median)
Critical 1
Serious2
Moderate3
Minor1

| Per domain | Dirtiest assets | Per Content Type | 

Sustainable Web

We know that using the internet means using electricity, and because most of that electricity comes from fossil fuels, it means that more data we send, the more fossil fuels we end up burning.

This is terrible news for the climate, and building a sustainable web is the 9th of the W3C's Ethical Web Principles.

If you build for the web, much of what you know about making sites faster and more accessible also makes them greener. If you're interested in learning more, you can find out at The Green Web Foundation.

Use--sustainable.pageViewsto configure the number of page views and calculate total CO2 emission.

Page viewsEstimated CO2 emissions (median)Transfer Size
1 page view total19.97 grams6.6 MB
1 page view first party19.24 grams (96.38 %)6.3 MB
1 page view third party0.72 grams (3.62 %)298.3 KB

Per domain(first run)

DomainEstimated CO2 emissionsTransfer Size
sizer.aecdaily.com 14.13 grams (70.75 %)4.6 MB
static.aecdaily.com 4.60 grams (23.06 %)1.5 MB
www.gstatic.com green0.64 grams (3.22 %)271.1 KB
www.aecdaily.com 0.27 grams (1.35 %)90.3 KB
matomo.aecdaily.com 0.12 grams (0.60 %)40.5 KB
simages.aecdaily.com 0.12 grams (0.60 %)40.3 KB
fonts.bunny.net 0.08 grams (0.39 %)25.8 KB
www.google.com green0.00 grams (0.02 %)1.4 KB
infodata.aecdaily.com 0.00 grams (0.02 %)1.1 KB

Dirtiest assets(first run)

AssetEstimated CO2 emissionsTransfer Size
https://sizer.aecdai...dunnedwards07.png2.21 grams (11.08 %)743.1 KB
https://sizer.aecdai...5_unikavaev01.png1.94 grams (9.71 %)651.2 KB
https://sizer.aecdai...undercovers01.png1.76 grams (8.83 %)592.4 KB
https://sizer.aecdai...861/v5_basf05.png1.70 grams (8.51 %)571.2 KB
https://sizer.aecdai...054/v5_jain01.png1.67 grams (8.36 %)560.7 KB
https://sizer.aecdai...5265/v5_amvic.png1.49 grams (7.45 %)499.6 KB
https://sizer.aecdai...v5_dinoflex02.png1.43 grams (7.14 %)478.9 KB
https://static.aecda...duotone-900.woff21.31 grams (6.57 %)440.5 KB
https://static.aecda...regular-400.woff21.22 grams (6.13 %)411.4 KB
https://static.aecda...a-solid-900.woff21.02 grams (5.10 %)342.3 KB

Per Content Type(first run)

Content TypeEstimated CO2 emissionsTransfer Size
image14.39 grams (72.09 %)4.7 MB
other3.90 grams (19.53 %)1.3 MB
javascript1.29 grams (6.45 %)432.7 KB
css0.39 grams (1.95 %)131.1 KB
font0.07 grams (0.37 %)24.5 KB
favicon0.04 grams (0.22 %)14.7 KB
html0.04 grams (0.19 %)13.0 KB
json0.00 grams (0.01 %)997 B
plain0.00 grams (0.01 %)452 B