• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

HTML5 and JSP

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Everyone,

I am new with JSP and HTML5.

Does anyone have a simple HTML5, CSS3 and JSP example page that i can run and follow? I can't get mind to work and I am thinking jsp and html5 does not mix? I tried to attached my files (jsp page, css3) but javaranch wouldn't let me.

Thanks in advance


Gallen

 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSP knowns nothing about HTML at all. Nor JavaScript. Nor CSS.

All the HTML, JavaScript and CSS markup in a JSP template is just template text and is not processed or parsed in any way by the JSP engine. It could be Swahili for all the JSP translator cares. So whether the template text contains HTML5, or HTML4, or random keystrokes caused by an iguana walking over the keyboard doesn't matter one iota.

So no, whatever your problem is, it isn't the use of HTML5. The problem lies elsewhere.

Please read this article for more info on how JSP works.

Describe the problems you are having, and post the relevant code sections (be sure to UseCodeTags).
 
reply
    Bookmark Topic Watch Topic
  • New Topic