前提・実現したいこと
WEB-INF直下のjspにCSSを読み込みたい
該当のソースコード
jsp-userlogin.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
//JSP,CSSフォルダはWEB-INF直下に置いてあります。
//下記を試したが読み込まれない
<link rel="stylesheet" href="../css/style.css" type="text/css"/>
<%@include file ="../css/style.css" %>
//
<meta charset="UTF-8">
<title>ユーザーログイン画面</title>
</head>
<body>
<h1 class="main-ttl">ユーザログイン</h1>
<form action="/AttendanceManagementSystem/UserLoginServlet" method="post">
<div class="container">
<div>
<p class = "txt">ユーザーID</p>
<p><input type="text" name="userid"></p>
<p class = "txt">パスワード</p>
<p><input type="password" name="password"></p>
</div>
<input type="submit" value="ログイン">
</div>
</form>
<form action="/AttendanceManagementSystem/AdministerLoginServlet" method="post">
<input type="submit" value="管理者ログインページ">
</form>
</body>
</html>
CSS-style.css
@charset "UTF-8";
body{
margin: 0 auto;
}
.container{
width:900px;
margin:0 auto;
}
.txt{
text-align: center
}
.main-ttl{
text-align: center
}
###他にも色々試した結果読み込まれず困ってます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/25 03:08