0

Here is my directory structure.

WebContent
    META-INF
    WEB-INF
    WebSites
        Index
            index.html
            css
                animate.css

In web.xml I specified welcome-file list as >/WebSites/Index/index.html. Then the html is loaded without any style. When I place the css folder in WebContents folder the style is loaded without any modification in web.xml. Is there a way I can fix this ?

Sevan
  • 669
  • 1
  • 5
  • 18
Jithin Sebastian
  • 511
  • 1
  • 6
  • 19

1 Answers1

1

I used "/Test/WebSites/Index/css/animate.css" and it worked(Test is my project name). For giving a link to another page also, i followed same format. I don't know why but this worked.

Jithin Sebastian
  • 511
  • 1
  • 6
  • 19