I have a folder called css with inside login.css file.
At the same level as this folder, I have login.jsp file. How do I include external css in jsp page?
I tried with
<html>
<head>
<title> Login Page </title>
<link href ="css/login.css" type ="text/css" rel ="stylesheet"></link>
...
but it does not work.
If it can be useful in the top login.jsp page is written:
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
Thanks.

</link>(which will be ignored), you do it like that.=matters. Remove that too!