Answer
An absolute URL includes the complete address, while a relative URL is resolved from the document base URL. • Absolute URLs include a scheme and host, such as `https://example.com/help`. • Relative URLs can point to paths such as `help.html` or `/images/logo.svg`. • The browser resolves relative URLs before requesting or navigating to the resource.
💡 Simple Example
<a href="https://example.com/help">Absolute URL</a><a href="/help">Relative URL</a>
⚡ Quick Revision
Absolute URLs are complete addresses; relative URLs are resolved from the current document or base URL.