JSF não funciona

Ola pessoal, presiso de ajuda com um codigo jsf. Segue abaixo meu codigo:

            <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    	xmlns:h="http://java.sun.com/jsf/html">
 <h:head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Cadastro</title>
</h:head>
<h:body>
    <h:outputText value="Cadastro de Celular" />
</h:body>
</html>

Porem quando executo, a pagina fica em branco e so o título Cadastro aparece, se eu substituir o <h:outputText value=“Cadastro de Celular” /> por
<h:outputText>Cadastro de Celular</outputText> funcionaria, mas caso eu use alguma tag de input ele da o mesmo problema.

esse é o web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>ProjetoCelular</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
  </servlet-mapping>
</web-app>

Coloque o teu código com 4 espaços antes do conteúdo de cada linha, só assim ele vai aparecer aqui para a gente.

Bom, coloque seu código xhtml dentro de um form

<h:body>
    <h:form>
		<h:outputText value="Cadastro de Celular" />
    <h:form>
</h:body>

Em seguida no seu xhtml deixe assim:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>ProjetoCelular</display-name>

  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
  </servlet-mapping>
</web-app>

A sua url-pattern é: /faces/*, então você teria que acessar assim:
localhost:8080/seucontexto/faces/suapagina

A convenção é a seguinte:

<url-pattern>*.xhtml</url-pattern>

Ai você acessa assim:
localhost:8080/seucontexto/suapagina.xhtml

vlw