I'm facing an issue with linking a CSS file located in my WEB-INF folder to a JSP page. In the JSP page, I have specified the location of the CSS file as follows:
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/WEB-INF/Tabs.css"
However, despite this setup, the CSS file doesn't link properly. Interestingly, when I move the CSS file out of the WEB-INF folder, everything works fine.
This is my first experience working with CSS, so I'm unsure what the problem might be.
Any insights on why this linkage issue is occurring would be greatly appreciated. Thank you for your assistance.