Href without http(s) prefix

It’s possible, and indeed you’re doing it right now. It just doesn’t do what you think it does. Consider what the browser does when you link to this: href=”https://stackoverflow.com/questions/43803778/index.html” What then would it do when you link to this?: href=”https://stackoverflow.com/questions/43803778/index.com” Or this?: href=”www.html” Or?: href=”www.index.com.html” The browser doesn’t know what you meant, it only knows … Read more

href=”tel:” and mobile numbers

When dialing a number within the country you are in, you still need to dial the national trunk number before the rest of the number. For example, in Australia one would dial: 0 – trunk prefix 2 – Area code for New South Wales 6555 – STD code for a specific telephone exchange 1234 – … Read more

html links not working (using base href)

You have to quote attribute values with ” (QUOTATION MARK) or ‘ (APOSTROPHE), not “ (LEFT DOUBLE QUOTATION MARK) and ” (RIGHT DOUBLE QUOTATION MARK). This type of error is typically caused by writing code using a word processor (such as Microsoft Word or Apple Pages) with automatic replacement of quotes with typographic quotes (aka … Read more