Bonjour;
je veux créer des page jsp qui contient des onglets; après une petite recherche dans le net j'ai trouvé ce tutorial http://ditchnet.org/tabs/, j'ai fait ce qui est indiquer dans ce tutorial mais le problème c'est je ne trouve pas le même interface .
Voila mon code JSP:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<%@ page contentType="text/html" %>
<%@ taglib prefix="tab" uri="http://ditchnet.org/jsp-tabs-taglib" %>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">


<head>

<title>Insert title here</title>

<tab:tabConfig />



</head>
<body>

<tab:tabContainer id="foo-bar-container" skin="Invisible">

<tab:tabPane id="foo" tabTitle="Foo!">
Foo is cool!
</tab:tabPane>

<tab:tabPane id="bar" tabTitle="Bar!">

</tab:tabPane>

</tab:tabContainer>



</body>

</html>
Bonne journée
Merci