<!-- Tell JSP where to find the tag library descriptions in XML,
which describe paramters and classes to implement the tags. -->
<%@ taglib prefix="mytag" uri="/WEB-INF/jsp2/mytag-taglibk.tld" %>
...
<html>
...
<!-- invoking a custom bodyless shirt tag with three parameters -->
<mytag:shirt color="blue" size="12" collar="Neru"/>

<!-- invoking a custom sweater tag with two parameters and a body -->
<mytag:sweater color="blue" size="12">
five buttons, contrasting collar.
</mytag:sweater>