Defines a custom tag library used by a JSP page.

<%@ taglib uri="tagLibraryURI"
	prefix="tagPrefix" %>

After the taglib directive, reference the custom tags using the syntax:

<tagPrefix:tagName>
...
</tagPrefix:tagName>