0

I have designed few JSP forms and I am in need of integrating any web template in that JSP form.

I am a beginner in JSP and I am completely unaware of such web templates usage in JSP.

Any sort of explanation/sources that would help me in proceeding with my task would be of great help.

Thanks everyone in advance. Waiting for your helpful replies.

UPDATE

Also let me know model web templates that can be downloaded from net. My ultimate aim is to present my JSP form in a good way.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Anand
  • 17
  • 1
  • 8
  • Your question is vague and ambiguous. The term "web template" makes no sense. Are you actually talking about [CSS](http://www.csstutorial.net/)? If so, this is completely unrelated to JSP. CSS acts on HTML which is served by JSP. – BalusC Nov 18 '10 at 17:28
  • am completely unaware of the CSS :( But I want my JSP forms to be presented in a good way. What can I do? – Anand Nov 18 '10 at 17:37

1 Answers1

0

This is completely unrelated to JSP. JSP just offers a way to control the HTML/CSS/JS output programmatically using Java. All the browser gets and understands is HTML/CSS/JS. You control markup with HTML. You control style (look'n'feel) with CSS. You control progressive enhancements with JS.

So, the real answer is: use CSS.

References:

Related questions:

Community
  • 1
  • 1
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555