Multiple choice html

Which of the following path is supported by HTML?

  1. Ralative

  2. Defererenced

  3. Absolute and Relative

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

HTML supports both absolute paths (full URLs like 'http://site.com/page.html' or root-relative paths like '/folder/file.html') and relative paths (like 'file.html' or '../folder/file.html'). Option A 'Ralative' appears to be a typo for 'Relative'.

AI explanation

HTML supports referencing resources using both absolute paths (full URLs starting from the domain root or including the protocol) and relative paths (relative to the current document's location) — both are valid and commonly used ways to link to images, pages, and other files.