I have a dynamic web project called BookShopWeb which I created in eclipse, with the following directory structure
/BookShopWeb/|
  |--src
  |---WebContent
                | 
                |---META-INF
                |----WEB-INF---web.xml
                            |
                            |--css--styles.css
                            |--jsp---index.jsp 
In web.xml I set the start page as
<welcome-file-list>
<welcome-file>/WEB-INF/jsp/index.jsp</welcome-file>
In the index.jsp I am including the css as
<head>
<link rel="stylesheet" type="text/css" href="../css/styles.css" />
</head>
The index page when loaded however does not show the css info.I checked the element with firebug and it shows an error report
Apache Tomcat/6.0.29 - Error report..
The requested resource (/css/styles.css) is not available.
Any idea why this occurs?How can I correct this? thanks mark
 
     
     
    