Advertisement
Guest User

menu

a guest
Nov 28th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4.      xmlns:h="http://xmlns.jcp.org/jsf/html">
  5.     <h:head>
  6.         <title>Menu</title>
  7.         <h:outputStylesheet library="css" name="styleMenu.css"/>
  8.     </h:head>
  9.     <h:body>
  10.         <h:form id="myFormMenu">
  11.             <dir id="menu">
  12.                 <ul>
  13.                     <li><h:link outcome="login">Login</h:link></li>
  14.                     <li><h:link outcome="login">Add product</h:link></li>
  15.                     <li><h:link outcome="login">List products</h:link></li>
  16.                     <li><h:commandLink action="login">Search products</h:commandLink></li>
  17.                 </ul>
  18.             </dir>
  19.         </h:form>
  20.     </h:body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement