- Code: Select all
<!-- INCLUDE simple_footer.html -->
</div>
The closing div tag needs to be set before including the footer. Otherwise the generated HTML is invalid:
- Code: Select all
</body>
</html>
</div>
<!-- INCLUDE simple_footer.html -->
</div></body>
</html>
</div>