I have a question regarding my jsp file, top.jsp, and css file, top.css. Despite specifying a background color in top.css, the color is not showing up on my top.jsp file.
Code snippet from top.css:
@CHARSET "ISO-8859-1";
body {
background-color: blue;
}
Code snippet from top.jsp:
<link rel="stylesheet" type="text/css" href="css/top.css"/>
What steps should I take to ensure that the background color appears as blue?
Take a look at the file structure below for reference: