Complete the code to link to an absolute URL for Google.
<a href="[1]">Visit Google</a>
An absolute URL includes the full web address starting with https://. Here, https://www.google.com is an absolute URL.
Complete the code to link to a relative URL for the about page in the same folder.
<a href="[1]">About Us</a>
A relative URL like about.html points to a file in the same folder as the current page.
Fix the error in the relative URL to correctly link to the contact page in a subfolder named 'pages'.
<a href="[1]">Contact</a>
To link to a file inside a subfolder relative to the current page, use pages/contact.html without a leading slash.
Fill both blanks to create a link to the image 'logo.png' located in the 'assets' folder relative to the current page.
<img src="[1]/[2]" alt="Company Logo">
The image is inside the 'assets' folder, so the path is assets/logo.png.
Fill all three blanks to create a link to the 'services.html' page located one folder up and inside the 'pages' folder.
<a href="[1]/[2]/[3]">Our Services</a>
.. to go up folders.To go one folder up into the 'pages' folder, use ../pages/services.html.