style.css からロゴとフォーマットを表示しようとしているファイル FixHome.jsp があります。ただし、.jsp ファイルを実行すると、画像が表示されず、stye.css ファイルのフォーマットが実装されません。
ファイルの場所は、次のように FixConnections プロジェクトの下にあります。
/WebContent/FixHome.jsp
/WebContent/Resources/style.css
/WebContent/Resources/needhamlogo2.bmp
私はEclipseを使用しており、Tomcat 7.0を実行しています
<html>
<head>
<link rel="stylesheet" href="${pageContext.request.contextPath}/Resources/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Fix Connections</title>
</head>
<body>
<table bgcolor="black" id="shell" height="100%" width="100%">
<tr height="30">
<td bgcolor="white">
<img src="${pageContext.request.contextPath}/Resources/NeedhamLogo2.bmp"/>
</td>
<td bgcolor="white">
FIX Connections
</td>
</tr>
</body>
</html>
画像と .css ファイルを正しく参照しているかどうかをお知らせください。