C:\russ\dev\CoreJSF\web\welcome.jsp
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
  <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
  <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
  <f:view>
  <head>
    <title>JSP Page</title>
  </head>
  <body>
  <h:form>
    <h3> Welcome to JavaServer Faces,
  <h:outputText value="#{user.name}" />
    </h3>
  </h:form>
  </body>
  </f:view>
</html>
<!-- vim: set tabstop=2 shiftwidth=2 noexpandtab: -->