Including DIV elements in Server Side Include Files

Magnetigenor

New Member
Is it a good practice to include DIV container elements in SSI files or should I only put the tags within the DIV container in it. For example in the code below I have a footer which appears under all pages. Should I put only the \[code\]<p>\[/code\] and \[code\]<a>\[/code\] elements in the SSI file or \[code\]<div>\[/code\] elements as well?\[code\]<div id="footer"> <div class="container"> <div class="wrapper"> <div id="footer_content"> <p>Copyright 2010 New Life e. V.<br /> <a href="http://stackoverflow.com/questions/15584863/en/contact.htm">Contact</a> | <a href="http://stackoverflow.com/questions/15584863/en/map.htm">Find Us</a> | <a href="http://stackoverflow.com/questions/15584863/en/impressum.htm">Impressum</a></p> </div> </div> </div></div>\[/code\]
 
Back
Top