HTTP Status 404 - /

Bom Galera sou novato desculpe me porem estou com uma duvida e erro em uma aplicação java

CODIGO:
Home.xhtml

<html

<ui:composition template="/WEB-INF/template/LayoutPadrao.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p=“http://primefaces.org/ui”>
<ui:define name=“titulo”>Dashboard</ui:define>

<ui:define name="titulo">Dashboard</ui:define>

</ui:composition>

Web.xml

<?xml version="1.0" encoding="UTF-8"?>

<welcome-file-list>
	<welcome-file>Home.xhtml</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>*.xhtml</url-pattern>
</servlet-mapping>

WEB-INF-TEMPLATE
LayaoutPadrao.xhtml

<?xml version="1.0" encoding="UTF-8" ?>

<h:head>

<ui:insert name=“titulo”>Sistema de Pedidos de Venda</ui:insert>
<h:outputStylesheet library=“css” name=“sistema.css” />
</h:head>

<h:body>


<h:link>
<h:graphicImage library=“images” name=“logo-algaworks.png”/>
</h:link>


</h:body>