Dúvida JSF - Porque não aparece nada?

Galera,

Porque com esse fonte não aparece nada quando testo no navegador?

[code]<?xml version='1.0' encoding='UTF-8' ?>

Facelet Title [/code]

P.S: Esse é meu primeiro contato com o JSF.

Tu deve ter esquecido de colocar o <f:view> e fechar ele
da um bizu

Quando eu coloque a tag dá esse erro:

[code]This page contains the following errors:

error on line 3 at column 20: Namespace prefix f on view is not defined
error on line 5 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.[/code]

[code]<?xml version='1.0' encoding='UTF-8' ?>

<f:view contentType=“text/html”/>

Facelet Title Hello from Facelets
    </h:form>
</h:body>
[/code]