1 pièce(s) jointe(s)
[NetBeans 8.0.2] Page JSP qui ne prend pas le CSS inclus
Bonsoir,
Je développe un projet Java EE sous NetBeans 8 et je suis confronté au problème suivant :
Mes pages JSP ne répondent pas aux critères du CSS inclus.
Arborescences que propose NetBeans :
Projet
Projet-ejb
2- Projet-war
2-1PageWeb
2-1-1 PageJSP(fichier dans PageWeb)
2-1-2 Web-INF
CSS(sous dossiers de Web-Inf).
Pièce jointe 168323
Voici mon code
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- <link href="menu.css" type="text/css" rel="stylesheet"> -->
<link rel="stylesheet" type="text/css" href="Css/affablebean.css">
<title>Gestion et vente de pizza</title>
</head>
<body>
<div id="main">
<div id="header">
header
</div>
<div id="indexLeftColumn">
left column
</div>
<div id="indexRightColumn">
right column
</div>
<div id="footer">
footer
</div>
</div>
</body>
</html> |
Quelqu'un saurait-il m'indiquer l'arborescence qui permettrait de pallier ces problèmes ?
Merci d'avance pour votre aide.