Is it possible to pull yoru HTML from somewhere else?

ronaldroe

Super Moderator
Staff member
You can use includes from a server side language like PHP for that. AJAX will also do it.
 

Nullified

New Member
You can use frames, but no you cannot have a link to html like you can a css/js document. You can however do as ronald suggested an have a php include if you are trying to make generalized template files for headers/footers/colums/etc:
PHP:
<?php include('header'); ?>
<div id="body">Your Page Content Goes Here</div>
<?php include('footer.php'); ?>
 
Top