Boa tarde.
Fiz e refiz o passo a passo dos vídeos, porém a minha página form está em branca. Pelo que pude perceber as tags do JSF não estão sendo apresentadas.
Faces-config:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.1" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_1.xsd"/>Página com form:
<!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://xmlns.jcp.org/jsf/html"
    xmlns:f="http://xmlns.jcp.org/jsf/core">
    TESTE
    <h:form>
        <div>
            <h:outputLabel value="Título"/>
            <h:inputText />
        </div>
        <div>
            <h:outputLabel value="Descrição"/>
            <h:inputTextarea rows="4" cols="20" />
        </div>
        <div>
            <h:outputLabel value="Número de Páginas"/>
            <h:inputText />
        </div>
        <div>
            <h:outputLabel value="Preço"/>
            <h:inputText />
        </div>
        <h:commandButton value="Cadastrar" />
    </h:form>
</html>