I have a site I made using jsp’s and I need to stylize it. Can I somehow implement a css template like this one in my jsp’s? css template
If so, how?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes. It is definitely possible. Here is a tutorial on JSP templates. It teaches you about the include directive, which allows you to include static content such as HTML files like:
or the template taglib that allows you to include templates with
From a template or from a raw JSP file you can absolutely reference CSS. It’s fairly simple. You reference the CSS in your HTML tags in the JSP the same way you would regularly:
For more information see W3.