I need some help with web programming. I have to do this assignment from school and the prof has given details on the structuring. One of them is that my site should be XHTML compliant (Strict or Transitional). Another is that I need to use at least one HTML5 feature. How do I use an HTML5 feature if none of the new tags will validate with XHTML?I am declaring it as XHTML 1.0 Transitional. Here is my HTML code where I am having trouble.\[code\]<body id="index" class="home"><header id="banner" class="body"><h1><a href="http://stackoverflow.com/questions/12789382/#">Header1 </a></h1><nav><ul><li class="active"><a href="http://stackoverflow.com/questions/12789382/#">home</a></li><li><a href="http://stackoverflow.com/questions/12789382/#">portfolio</a></li><li><a href="http://stackoverflow.com/questions/12789382/#">blog</a></li><li><a href="http://stackoverflow.com/questions/12789382/#">contact</a></li></ul></nav></header></body>\[/code\]In the line with header and nav, it says the elements are undefined and that there are no attributes id and class in header. Please help.Thanks.