Mobile app version of vmapp.org
Login or Join
Twilah146

: The right way of specifying website files in html i specify my website's internal files like this for my website: www.mscaspian.com ` but when i validate it with w3c it says there is an

@Twilah146

Posted in: #Html5 #Links #W3cValidation

i specify my website's internal files like this for my website: mscaspian.com `
but when i validate it with w3c it says there is an error in the last part, '>' .
i don't understand why this is wrong. is there anything i'm missing?
it says:


Bad value ../Nexus components/css/component.css for attribute href on element link: Illegal character in path segment: not a URL code point.Syntax of IRI reference:
Any URL. For example: /hello, #canvas , or example.org/. Characters should be represented in NFC and spaces should be escaped as %20.


i read the NFC link they provided but Really couldn't figure out what's wrong with it!
Using HTML5 and CSS3

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Twilah146

1 Comments

Sorted by latest first Latest Oldest Best

 

@Speyer207

Your using:

<link rel="stylesheet" type="text/css" href="../Nexus components/css/component.css">

XHTML/HTML4 Use:

<link rel='stylesheet' type='text/css' href='../Nexus%20components/css/component.css' />

HTML5 Use:

<link rel='stylesheet' href='../Nexus%20components/css/component.css' />

Full Code Used:

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme