Page summary

https://demo-uni.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 Score57
Total Page Transfer Size3.0 MB
Requests73
TTFB [median]401 ms
Fully Loaded [median]2.568 s
First Visual Change [median]2.234 s
First Contentful Paint (FCP) [median]1.828 s
Largest Contentful Paint (LCP) [median]2.474 s
Cumulative Layout Shift (CLS) [median]0.12
Total Blocking Time [median]197 ms
Max Potential FID [median]123 ms
CPU long tasks [median]11
CPU longest task duration185 ms
Speed Index [median]2.392 s
Visual Complete 85% [median]2.500 s
Visual Complete 99% [median]2.500 s
Last Visual Change [median]2.500 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange2.234 s2.234 s2.234 s2.234 s
LastVisualChange2.500 s2.500 s2.500 s2.500 s
SpeedIndex2.392 s2.392 s2.392 s2.392 s
LargestImage2.500 s2.500 s2.500 s2.500 s
LastMeaningfulPaint2.500 s2.500 s2.500 s2.500 s
VisualReadiness266 ms266 ms266 ms266 ms
VisualComplete852.500 s2.500 s2.500 s2.500 s
VisualComplete952.500 s2.500 s2.500 s2.500 s
VisualComplete992.500 s2.500 s2.500 s2.500 s
RUM Metrics
TTFB401 ms401 ms401 ms401 ms
LCP2.474 s2.474 s2.474 s2.474 s
FCP1.828 s1.828 s1.828 s1.828 s
firstPaint1.828 s1.828 s1.828 s1.828 s
loadEventEnd2.525 s2.525 s2.525 s2.525 s
CLS0.11990.11990.11990.1199
CPU
Total Blocking Time197 ms197 ms197 ms197 ms
Max Potential FID123 ms123 ms123 ms123 ms
CPU long tasks 11111111
| 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 93 ms
1.1 sCPU Long Task duration 116 ms
1.4 sCPU Long Task duration 185 ms
1.5 sCPU Long Task duration 147 ms
1.7 sCPU Long Task duration 146 ms
1.9 sLayout Shift 0.01762 1.806 sCPU Long Task duration 92 msDOM Content Loaded Time 1.812 sFirst Contentful Paint 1.828 s
2 sCPU Long Task duration 123 ms
2.1 sLayout Shift 0.00044 2.023 sCPU Long Task duration 69 ms
2.2 sLayout Shift 0.00021 2.136 sCPU Long Task duration 81 ms
2.3 sLayout Shift 0.10148 2.214 sFirst Visual Change 2.234 s
2.4 sLayout Shift 0.00018 2.348 sCPU Long Task duration 102 ms
2.5 sCPU Long Task duration 72 msLCP <DIV> 2.474 sLast Visual Change 2.500 sVisual Complete 85% 2.500 sVisual Complete 95% 2.500 sVisual Complete 99% 2.500 sLargest Image 2.500 s
2.6 sPage Load Time 2.513 sFully Loaded 2.568 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 (57)

TitleAdviceScore
Avoid slowing down the critical rendering path (fastRender)The page has 19 render blocking CSS requests and 36 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 loads 19 CSS requests inside of head, try to inline the CSS for the first render and lazy load the rest.0
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 11 CPU long tasks with the total of 1226 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
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
Avoid Frontend single point of failures (spof)The page has 42 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:
Always load third-party JavaScript asynchronously (thirdPartyAsyncJs)The page has 1 synchronous 3rd-party JavaScript request. Change it to be asynchronous instead.90
Description: Use JavaScript snippets that load the JS files asynchronously in order to speed up the user experience and avoid blocking the initial load.
Offenders:
Avoid extra requests by setting cache headers (cacheHeaders)The page has 8 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 534.2 kB the next access.20
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 53 requests that have a shorter cache time than 30 days (but still a cache time).47
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:
Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 218.3 kB and uncompressed size is 1.2 MB. 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.
Avoid too many fonts (fewFonts)The page has 5 font requests. Do you really need them? What value does the fonts give the user?50
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:
Avoid too many requests per domain [HTTP/1] (fewRequestsPerDomain)The page has 1 domain that serves more than 30 requests. static.aecdaily.com got 43 requests. Improve performance by sharding those or move to HTTP/2.90
Description: Browsers have a limit on how many concurrent requests they can do per domain when using HTTP/1. When you hit the limit, the browser will wait before it can download more assets on that domain. So avoid having too many requests per domain.
Offenders:
  • static.aecdaily.com
Total image size shouldn't be too big (imageSize)The page total image size is 874.5 kB. 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 1.1 MB and the uncompressed size is 3.5 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 3 misconfigured mime types. 97
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/bootstrap/5.3.0-alpha3/bootstrap-5.3.0-alpha3-dist/css/bootstrap.min.css size is 31.3 kB (31259) and that is bigger than the limit of 14.5 kB. https://static.aecdaily.com/datatables/DataTables-2.0.2/datatables.min.css size is 15.8 kB (15783) and that is bigger than the limit of 14.5 kB. https://static.aecdaily.com/fontawesome_pkgs/fontawesome-pro-6.4.2-web/css/all.min.css size is 100.2 kB (100246) and that is bigger than the limit of 14.5 kB. https://static.aecdaily.com/ag-grid/styles/ag-grid.min.css size is 22.6 kB (22554) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.60
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 3.1 MB, which is more than the coach limit of 2 MB. That is really big 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 1 request with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.90
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 (73)

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.88
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:
  • A navbar-brand
  • DIV offcanvas offcanvas-end
  • UL navbar-nav
  • DIV input-group me-sm-2
  • UL navbar-nav
  • DIV input-group me-sm-2
  • DIV container-fluid page-container
  • MAIN container-fluid container-xl main-content
  • UL navbar-nav
  • DIV input-group me-sm-2
  • DIV easy-autocomplete-container
Meta description (metaDescription)The meta description is too long. It has 505 characters, the recommended max is 15550
Description: Use a page description to make the page more relevant to search engines.
Avoid use too many third party responses (thirdParty)The page do 12% requests to third party domains (9 requests and 352.8 kB). First party is 64 requests and 2.7 MB. The regex .*aecdaily.* was used to calculate first/third party requests.50
Description: Do not load most of your content from third party URLs.
Avoid Unnecessary Headers (unnecessaryHeaders)There are 1 response that sets a p3p header. There are 13 responses that sets both a max-age and expires header. There are 1 response that sets a pragma no-cache header (that is a request header). There are 73 responses that sets a server header. 12
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 4% requests that are 3rd party (3 requests with a size of 290.4 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
TitleDemo University
Width1350
Height1992
DOM elements354
Avg DOM depth10
Max DOM depth19
Iframes0
Script tags46
Local storage0 b
Session storage0 b
HTML vs AMPPlain good HTML page
Resource Hints
preconnect
https://fonts.bunny.net/

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
TinyMCE 100  Rich text editors
Varnish 100  Caching
Google PageSpeed 1.13.35.2100  Caching Web server extensions
Bootstrap 1.14.0100  UI frameworks
Apache 100  Web servers
reCAPTCHA 100  Security
jQuery Migrate 3.4.1100  JavaScript libraries
jQuery 100  JavaScript libraries
Slick 100  JavaScript libraries
DataTables 100  JavaScript libraries
Clipboard.js 100  Miscellaneous

Data collected using Third Party Web.

Cdn
jQuery CDN
Google CDN
Utility
Other Google APIs/SDKs
Survelliance
Other Google APIs/SDKs
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 typeDIV
Element/tag<div class="jumbotron"></div>
Render time 2.474 s
Load time2.259 s
URL https://demo-uni.aec...mo-uni/hero-2.jpg
Size (width*height)715500
DOM path
div:eq(0) > header > div:eq(1)> div:eq(0) > header > div:eq(1)>
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.11993 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.10148<div class="container-fluid page-container"></div>,<main class="container-fluid container-xl main-content" role="main"></main>
body > div:eq(0),body > div:eq(0) > main
0.01762<a class="navbar-brand" href="/en"></a>,<div class="offcanvas offcanvas-end" tabindex="-1" id="navbarMain" aria-labelledby="navbarMainLabel"></div>
body > div:eq(0) > header > div:eq(0) > div > nav > a,body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain
0.00044<ul class="navbar-nav"></ul>,<div class="input-group me-sm-2"></div>
body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > ul,body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > form#programSearch > div
0.00021<ul class="navbar-nav"></ul>,<div class="input-group me-sm-2"></div>
body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > ul,body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > form#programSearch > div
0.00018<ul class="navbar-nav"></ul>,<div class="input-group me-sm-2"></div>,<div class="easy-autocomplete-container" id="eac-container-searchInput"></div>
body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > ul,body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > form#programSearch > div,body > div:eq(0) > header > div:eq(0) > div > nav > div#navbarMain > div:eq(1) > form#programSearch > div > div > div#eac-container-searchInput
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
Documents4
Frames2
JSEventListeners68
LayoutObjects297
MediaKeySessions0
MediaKeys0
Nodes1093
Resources133
ContextLifecycleStateObservers6
V8PerContextDatas1
WorkerGlobalScopes0
UACSSResources0
RTCPeerConnections0
ResourceFetchers4
AdSubframes0
DetachedScriptStates0
ArrayBufferContents4
LayoutCount13
RecalcStyleCount17
LayoutDuration234
RecalcStyleDuration114
DevToolsCommandDuration134
ScriptDuration762
V8CompileDuration5
TaskDuration2422
TaskOtherDuration1172
ThreadTime1
ProcessTime2
JSHeapUsedSize8409292
JSHeapTotalSize9416704
FirstMeaningfulPaint2167

Visual Elements

NameDisplay TimeX YWidthHeight
LargestImage (logo.png)2.500 s 141 24 190 48
<img src="/images/demo-uni/logo.png" alt="" data-pagespeed-url-hash="1195465945" onload="pagespeed.CriticalImages.checkImageForCriticality(this);">
| 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 requests73
Total domains6
Total transfer size3.0 MB
Total content size6.2 MB
Responses missing compression50
Number of cookies1
Third party cookies0
Requests per response code
20072
2041

Largest assets on the page (by transfer size)

Requests and sizes per content type

ContentHeader SizeTransfer SizeContent SizeRequests
html497 B9.2 KB41.9 KB1
css7.2 KB213.1 KB1.2 MB19
javascript15.2 KB1.0 MB3.3 MB38
image2.8 KB854.1 KB854.0 KB6
font0 b59.5 KB55.9 KB5
other959 B814.6 KB814.6 KB3
plain214 B0 b0 b1
Total26.8 KB3.0 MB6.2 MB73

Size and requests per domain

DomainHeader SizeTransfer SizeContent SizeRequests
demo-uni.aecdaily.com10.2 KB928.6 KB1.1 MB21
fonts.bunny.netN/A60.9 KB68.5 KB6
static.aecdaily.com16.6 KB1.7 MB4.3 MB43
code.jquery.comN/A10.2 KB31.2 KB1
www.google.comN/A1.5 KB1.6 KB1
www.gstatic.comN/A272.0 KB638.3 KB1

Expires and last modified statistics

typeminmedianmax
Expires0 seconds2 days1 year
Last modified12 hours3 years34 years

Requests loaded after onLoad event

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript0 b0
image1.2 KB1
font0 b0
plain0 b1
Total1.2 KB2

Requests loaded after onContentLoad

Includes requests done after onLoad.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript272.0 KB1
image1.2 KB1
font23.8 KB2
other494.5 KB2
plain0 b1
Total791.5 KB7

Render blocking requests

Render blocking information directly from Chrome.

BlockingIn body parser blockingPotentially blocking
5501

Render information

URLType
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...ty.min.noStyle.jsblocking
https://static.aecda...ce/tinymce.min.jsblocking
https://static.aecda...-brands-400.woff2non_blocking
https://static.aecda...datatables.min.jsblocking
https://static.aecda...b/css/all.min.cssblocking
https://static.aecda...ue.global.prod.jsblocking
https://static.aecda...t/filepond.min.jsblocking
https://static.aecda...bootstrap.min.cssblocking
https://static.aecda...uery-3.7.1.min.jsblocking
https://static.aecda...rap.bundle.min.jsblocking
https://static.aecda...s/ag-grid.min.cssblocking
https://static.aecda...ist/tagify.min.jsblocking
https://static.aecda...rap-select.min.jsblocking
https://static.aecda...atatables.min.cssblocking
https://static.aecda...0/Sortable.min.jsblocking
https://static.aecda...me-quartz.min.cssblocking
https://demo-uni.aec...cc.aPOUFnr34Y.cssblocking
https://demo-uni.aec...opentip-jquery.jsblocking
https://static.aecda.../flatpickr.min.jsblocking
https://static.aecda....1/parsley.min.jsblocking
https://fonts.bunny....-600-normal.woff2non_blocking
https://fonts.bunny....-400-normal.woff2non_blocking
https://fonts.bunny....-500-normal.woff2non_blocking
https://demo-uni.aec...js/jquery.form.jsblocking
https://fonts.bunny....-800-normal.woff2non_blocking
https://fonts.bunny....-700-normal.woff2non_blocking
https://code.jquery....-migrate-3.4.1.jsblocking
https://static.aecda...lick/slick.min.jsblocking
https://static.aecda...y.validate.min.jsblocking
https://demo-uni.aec...y.autocomplete.jsblocking
https://static.aecda...xios/axios.min.jsblocking
https://static.aecda...tocomplete.min.jsblocking
https://demo-uni.aec...lete_email.min.jsblocking
https://demo-uni.aec...ablesorter.min.jsblocking
https://static.aecda.../clipboard.min.jsblocking
https://static.aecda.../filepond.min.cssblocking
https://static.aecda...ry.matchHeight.jsblocking
https://static.aecda...flatpickr.min.cssblocking
https://demo-uni.aec.../manage_tables.jsblocking
https://static.aecda...8/dist/tagify.cssblocking
https://demo-uni.aec...cc.sE7S-Vkcwt.cssblocking
https://demo-uni.aec....com/js/common.jsblocking
https://static.aecda...ap-select.min.cssblocking
https://static.aecda...ery.modal.min.cssblocking
https://static.aecda...gsort/dragsort.jsblocking
https://static.aecda...uery.modal.min.jsblocking
https://demo-uni.aec...rap-show-toast.jsblocking
https://www.google.com/recaptcha/api.jspotentially_blocking
https://static.aecda...ocomplete.min.cssblocking
https://fonts.bunny....nts.bunny.net/cssblocking
https://demo-uni.aec.../country_state.jsblocking
https://demo-uni.aec...mplete_address.jsblocking
https://static.aecda...idate-type.min.jsblocking
https://static.aecda...te.themes.min.cssblocking
https://demo-uni.aec.../js.cookie.min.jsblocking
https://static.aecda...idate-size.min.jsblocking
https://static.aecda...m/slick/slick.cssblocking
https://static.aecda...stom/telephone.jsblocking
https://static.aecda...arp-solid.min.cssblocking
https://static.aecda.../fa-aec-icons.cssblocking
https://static.aecda...om/maxfilesize.jsblocking
https://static.aecda...sort/dragsort.cssblocking
| 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 197
Max Potential First Input Delay 123
Long Tasks before First Paint6779
Long Tasks before First Contentful Paint6779
Long Tasks after Load Event End00
Total Long Tasks111226

Individual Long Tasks

namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
self94393window
self1048116window
self1311185window
self1497147window
self1645146window
self181192window
self1909123window
self206469window
self217581window
self2356102window
self245972window

CPU time spent

Calculated using Tracium.

Categories (ms)
parseHTML258
styleLayout349
paintCompositeRender193
scriptParseCompile7
scriptEvaluation767
garbageCollection60
other701
Events (ms)
RunTask695
V8.Execute607
Layout234
ParseHTML203
CompositeLayers124
UpdateLayoutTree115
V8.GC_SCAVENGER_SCAVENGE_PARALLEL56
ParseAuthorStyleSheet55
FunctionCall41
UpdateLayerTree36
v8.callFunction32
FireAnimationFrame31
V8.BytecodeBudgetInterrupt27
PaintImage20
Paint12
V8.RunMicrotasks10

Time spent per request

URLCPU time (ms)
https://static.aecdaily.com/jquery/jquery-3.7.1.min.js175
https://static.aecdaily.com/javascript_pkgs/filepond_20221028/dist/filepond.min.js156
https://www.gstatic.com/recaptcha/releases/jt8Oh2-Ue1u7nEbJQUIdocyd/recaptcha__en.js102
https://demo-uni.aecdaily.com/91
https://static.aecdaily.com/javascript_pkgs/tinymce_7.6.0/tinymce/js/tinymce/tinymce.min.js89
https://static.aecdaily.com/ag-grid/js/ag-grid-community.min.noStyle.js66
https://static.aecdaily.com/javascript_pkgs/vue/3.5.13/vue.global.prod.js53
https://static.aecdaily.com/datatables/DataTables-2.0.2/datatables.min.js38
https://demo-uni.aecdaily.com/js/jquery.form.js16
https://demo-uni.aecdaily.com/js/jquery.tablesorter.min.js12

CPU time spent

Tool/domainTime (ms)
static.aecdaily.com577.2
Google CDN102.4
demo-uni.aecdaily.com120.0
| Categories | | Tools | | First vs third | 

Third party

Third party requests categorised by Third party web.

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

Third party requests and tools

cdn (2 requests)
jQuery CDN
Google CDN
utility (1 requests)
Other Google APIs/SDKs
survelliance (2 requests)
Other Google APIs/SDKs
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
html497 B9.2 KB41.9 KB1
css7.2 KB211.8 KB1.1 MB18
javascript15.2 KB788.1 KB2.6 MB35
image2.8 KB854.1 KB854.0 KB6
font0 b0 b0 b0
other959 B814.6 KB814.6 KB3
plain214 B0 b0 b1
Total26.8 KB2.6 MB5.5 MB64

Third party requests and sizes per content type

ContentHeader SizeTransfer SizeContent SizeRequests
html0 b0 b0 b0
css0 b1.3 KB12.6 KB1
javascript0 b283.6 KB671.1 KB3
image0 b0 b0 b0
font0 b59.5 KB55.9 KB5
TotalN/A344.5 KB739.6 KB9

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
Serious3
Moderate2
Minor0

| 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 total8.83 grams3.0 MB
1 page view first party7.97 grams (90.26 %)2.6 MB
1 page view third party0.86 grams (9.74 %)344.5 KB

Per domain(first run)

DomainEstimated CO2 emissionsTransfer Size
static.aecdaily.com 5.21 grams (58.96 %)1.7 MB
demo-uni.aecdaily.com 2.76 grams (31.30 %)928.6 KB
www.gstatic.com green0.65 grams (7.31 %)272.0 KB
fonts.bunny.net 0.18 grams (2.05 %)60.9 KB
code.jquery.com 0.03 grams (0.34 %)10.2 KB
www.google.com green0.00 grams (0.04 %)1.5 KB

Dirtiest assets(first run)

AssetEstimated CO2 emissionsTransfer Size
https://demo-uni.aec...mo-uni/hero-2.jpg1.47 grams (16.68 %)494.8 KB
https://static.aecda...regular-400.woff21.15 grams (13.02 %)386.2 KB
https://static.aecda...a-solid-900.woff20.95 grams (10.79 %)320.1 KB
https://demo-uni.aec..._course_image.jpg0.84 grams (9.50 %)281.9 KB
https://www.gstatic..../recaptcha__en.js0.81 grams (9.17 %)272.0 KB
https://static.aecda...ty.min.noStyle.js0.65 grams (7.36 %)218.4 KB
https://static.aecda...ce/tinymce.min.js0.46 grams (5.26 %)156.0 KB
https://static.aecda...-brands-400.woff20.32 grams (3.65 %)108.3 KB
https://static.aecda...datatables.min.js0.32 grams (3.63 %)107.8 KB
https://static.aecda...b/css/all.min.css0.29 grams (3.30 %)97.9 KB

Per Content Type(first run)

Content TypeEstimated CO2 emissionsTransfer Size
javascript3.19 grams (36.12 %)1.0 MB
image2.54 grams (28.79 %)854.1 KB
other2.42 grams (27.46 %)814.6 KB
css0.63 grams (7.18 %)213.1 KB
font0.18 grams (2.01 %)59.5 KB
html0.03 grams (0.31 %)9.2 KB
plain0 (0.00 %)0 b