Menu JSP Source Code 
Syntax
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%><%@taglib
uri="http://java.sun.com/jsf/core" prefix="f"%><%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<f:view>
<h:form target="content" >
<h:commandLink action="#{projectMB.projListNavigation}">
<h:outputText value="List project" ></h:outputText>
</h:commandLink><br>
<h:commandLink action="#{projectMB.emplListNavigation}">
<h:outputText value="List employees"></h:outputText>
</h:commandLink><br>
<br>
</h:form>
</f:view></body>
</html>