Have a somewhat confusing HTML question that is frustrating me.
I am struggling to incorporate certain css files into a jsp page.
Here is what I have attempted:
<link href="<c:url value="/css/bootstrap.css"/>" rel="stylesheet">
And also tried:
<link href="<c:url value="/css/bootstrap.css"/>" rel="stylesheet">
Unfortunately, the server keeps returning a 404 error and cannot import the file:
{code="404", msg="/css/bootstrap.css", uri=/css/bootstrap.css}
The text
" rel="stylesheet">
ends up showing on the webpage.
I made sure to include the imports at the top of the document to avoid any conflicts with previous lines. The css file definitely exists in the /css directory, and I have copied it to every possible location just to be sure. I'm completely puzzled by this issue... Could there be something obvious that I am missing?