Bhumika,
I was stuck at the same point. I was all set for the exam and had my attributes,
patterns, JSP, EL etc sorted but this tag business would not fit in my poor little brain.
I think that if you are following the HF book you can get confused by the numerous types of tags, tld's etc. I believe its helpful to take the time to separate them in your mind and then chapters 9 & 10 start to make a lot more sense.
Basically in Chapter 10 we are introduced to 3 types of tags.
1. Tag Files.
Like includes but better, based on JSP, use attribute and tag directives.
2. Simple Tags.
Java class, TLD to describe attributes. Extends SimpleTagSupport.
3. Classic Tags.
Java class, TLD to describe attributes. Extends TagSupport.
This is roughly how I have separate them in my mind. Once you see them like this you can see that the example at the end of Chapter 9 is an example of deploying a type 2 - Simple Tag.
Hopefully things will now start to fall into place.
Steven