External CSS not working

You can’t have spaces in a URL, try changing the space to its ASCII character: %20 so it would look like this:

<link rel="stylesheet" type="text/css" href="new%201.css">

Or what I would normally do is use proper file naming conventions, either camel case (every word [ besides the first one] starts with an upper case letter) or use underscores between the names.

Leave a Comment