0
0
SEO Fundamentalsknowledge~10 mins

Page speed fundamentals in SEO Fundamentals - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the HTML tag that helps improve page speed by preloading important resources.

SEO Fundamentals
<link rel="[1]" href="style.css">
Drag options to blanks, or click blank then click option'
Astylesheet
Bpreload
Cscript
Dicon
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stylesheet' instead of 'preload' delays resource loading.
2fill in blank
medium

Complete the sentence to describe a key factor affecting page speed.

SEO Fundamentals
One major factor that slows down page speed is the size of [1] on the page.
Drag options to blanks, or click blank then click option'
Aimages
BHTML tags
Clinks
Dheadings
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'HTML tags' or 'links' which usually have smaller size impact.
3fill in blank
hard

Fix the error in the statement about browser caching.

SEO Fundamentals
Browser caching helps by storing [1] locally so they don't need to be downloaded again.
Drag options to blanks, or click blank then click option'
Aresources
Bscripts
Cerrors
Dads
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'errors' or 'ads' which are not cached for speed.
4fill in blank
hard

Fill both blanks to complete the sentence about reducing page load time.

SEO Fundamentals
To reduce page load time, you can [1] the size of images and [2] the number of HTTP requests.
Drag options to blanks, or click blank then click option'
Acompress
Bincrease
Creduce
Dcache
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'increase' which would slow down the page.
5fill in blank
hard

Fill both blanks to complete the code snippet that delays loading of non-critical scripts.

SEO Fundamentals
<script src="app.js" [1] [2]></script>
Drag options to blanks, or click blank then click option'
Aasync
Bdefer
Cloading
Dlazy
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'loading' or 'lazy' which apply to images and iframes, not scripts.