[Solved] Html link href attribute explanation


Nothing. You either have an absolute URI (which has a scheme) or a relative URI (which does not). In short: It must be a URI.

Relative URIs can be relative to either the current base URI, the host root or the scheme.

Using ./ to indicate the current directory has been a staple of relative paths for decades (it predates the WWW).

1

solved Html link href attribute explanation