Hello. I was wondering if there was a way I could make a webpage import html from another file into a page. E.g.
index.html:
1.html:
This will make it ALOT easier to maintain and update. And will make the code on the main page much easier to see, because I want to add a lot of images. I know that forums use php to call in different style sheets. Something like @import.
index.html:
Code:
<import html="1.html"> <import html="2.html"> <import html="3.html"> ect...
Code:
<div class="main-content"> blahblahblah <img src="url"> blahblah </div>
Comment