I have imported a jsf project in my netbeans. I resolved all the resolution problems as the libraries have been stored in the ./lib folder.
When I run the project, one line of header is visible but the links are not visible in the browser. When I checked the html source in the browser, it is like this.
<?xml version='1.0' encoding='UTF-8' ?>
<!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:c="http://xmlns.jcp.org/jsp/jstl/core">
<h:head>
<title>Prototype of Engine</title>
<link rel="stylesheet" type="text/css" href="../includes/style.css" />
</h:head>
<h:body>
<h1>Prototype I of Engine</h1>
<h3><h:link outcome="auto_cleanse" value="Start Auto Cleansing"></h:link></h3>
<h3><h:link outcome="data_transfer" value="Verify data for visit details"></h:link></h3>
<h3><h:link outcome="itemized_bill" value="Assign revenue codes to items in itemized bill"></h:link></h3>
<h3><h:link outcome="todo" value="TO DO List"></h:link></h3>
</h:body>
</html>
So the only thing rendered is
Prototype I of Engine
What possibly might have been wrong. Thanks in advanced.