How can we create menubar in jsp. We have to use html commands, or is there any other method? If anybody can give me any web address where i can find the turorial for this. I have searched the web but unable to find any good answer.
Thanks
First thing you need to realize that JSP is just a Java based view technology which enables outputting HTML/CSS/JS dynamically and that HTML is a markup language which can instruct the webbroser how to display the page elements.
As to your problem, you need the HTML <ul>
element to represent a list. Then you can apply a good shot of CSS to style it the way you want. This is in HTML/CSS world also called "Suckerfish dropdowns".
Since the question is too broad, best I can do is to recommend you the separate concepts "HTML" and "CSS" properly and give you some tutorial links.
- W3schools HTML tutorial/reference
- W3schools CSS tutorial/reference
- Alistapart - Suckerfish dropdowns
- HTML dog - Suckerfish dropdowns
Related questions:
- Where to start from in web development?
- Java web development, what skills do I need?
精彩评论