I am developping a JSP page and I would like to import a basic css file for my page. Here is the code of the jsp :
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Home</title>
<link type="text/css" rel="stylesheet" href="/WEB-INF/Css/Home.css" />
</head>
<body>
TOTO !!!!!
</body>
</html>
And here is my css :
body {
background-color: black;
}
The problem is that the css is not taken account. Do you know the problem ?