0

Trying a very basic link through HTML to internet:

<p><a href="http://www.google.com">Google</a></p>

No matter what website I try to link to my browser says ERR_FILE_NOT_FOUND and the detail

No webpage was found for the web address: file:///Users/stevemcc101/Dropbox/html/“https://www.google.comâ€

So my browser is always picking up the path to the dropbox folder (or any other folder I save the document in) and not linking direct to the URL.

Sorry I know a basic query but just starting to learn HTML and can't get around this issue. Please help!

Paul LeBeau
  • 97,474
  • 9
  • 154
  • 181

1 Answers1

1

Try without the quotes like so:

<p><a href=http://www.google.com>Google</a></p>

if that works then the issue is with your quotes

aharen
  • 627
  • 3
  • 13