Skip to content Skip to sidebar Skip to footer

Cannot Apply External Css Even After Providing Fully Qualified Url In Html String

body {} .table{ background-color:aqua } this is my StyleSheet1.css saved in my local at C:\Users\ingyadav\Documents\Visual Studio 2015\Projects\StyleSheet1.css &l

Solution 1:

No you cannot specify multiple locations in the href attribute. Per the spec, each <link> represents a document that is connected to your html. So by design it would be only one document.

More Example: https://www.w3.org/TR/html401/struct/links.html#h-12.3

Post a Comment for "Cannot Apply External Css Even After Providing Fully Qualified Url In Html String"