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 31 32 33
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Menu</title>
<script type="text/javascript">
function redirectTwoFrame(firstWindow, firstUrl, secondWindow, secondUrl){
firstWindow.location.href = firstUrl;
secondWindow.location.href = secondUrl;
}
</script>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
</head>
<body>
<ul id="navigation">
<li>
<a href="framePageAcc.php" target="page" title="aller à l'accueil">Accueil</a>
</li>
<li>
<a href="framePageArticle.htm" target="page" title="aller à la gestion des articles">Gestion des articles</a>
</li>
<li>
<a href="#" onclick="redirectTwoFrame('title', 'fournisseursTitle.html', 'contenu', 'fournisseurs.html')" target="page" title="aller à la gestion des fournisseurs">Fournisseur</a>
</li>
<li>
<a href="#" target="page" title="aller à la getion du stock">Stock</a>
</li>
<li>
<a href="#" target="page" title="aller à la gestion des commandes">Commande</a>
</li>
</ul>
</body>
</html> |
Partager