Define JSF Taglibs.
The JSF Taglibs are of two.
1. HTML Tag lib
2. Core Tag lib
HTML Tag lib: This tag library contains all the tags that pertains all the tags that are to deal with forms and other HTML-specific stuff.
Core Tag lib: The Core Tag lib contains the tags that pertaining all the tags that are to deal with logic, validation, controller and other JSF-specific stuff.
The two tag libs are to be specified as follows:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
Define JSF Taglibs.
The JSF Taglibs contain all the custom tags that make up the library and enables the configuration of many details regarding the tool behavior.
For example, you can specify the appearance of tags in the Palette, behaviors when dropping tags onto the editor, the visual appearance of components in the JSP, and various details about tag attributes and data binding.