开发者

Creating Menubar in jsp

开发者 https://www.devze.com 2023-02-07 17:22 出处:网络
开发者_如何学GoHow 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 searc
开发者_如何学Go

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?
0

精彩评论

暂无评论...
验证码 换一张
取 消