@support-greg wrote:
Could you post your JSP file with the <head> section so we can see how you are linking to the CSS page? Also, can you verify that the CSS page is being deployed alongside the JSP in tomcat?
How would i get the information about the CSS deployment will it be shown in the console?
<head>
<title>JSP for loginForm form</title>
</head>
<link rel="stylesheet" HREF="CSS/pagestyl.css" TYPE="text/css" TITLE="def font page">
<body>
Welcome
<% String name = String.valueOf(request.getParameter("name"));
out.println(name);%>
you have sucessfully logged in!