HEELP!! html stylesheet?

admin

Administrator
Staff member
I kinda suck at html but i really want to know if this shortcut exists--<br />
<br />
I have a template written in html and i am sick of editing every single page when i want to change one little thing. Is there a way that i can make one page to put my template on and link all the other pages to it or do i have to rewrite my template to css?<!--content-->Do you mean something like this?<br />
<link rel="stylesheet" href=http://www.webdeveloper.com/forum/archive/index.php/"style.css" media="screen" type="text/css" /><!--content-->What you need is SSI(server side includes) if its on your server. You will only need to update a couple of files so that it will appear the same throughout.<!--content-->whats ssi? How do i get it? How do i use it?<!--content-->SSI are tags that look like HTML comments which appear in webpages and are processed by the server. You need to find out if it is available on your server from your web hosting provider. If it is, you may need to rename your files to .shtml and you can then include content like this:<br />
<br />
<!--#include virtual="/page.html" --><br />
<br />
There are various other features of SSI which you may find useful, and there is a tutorial explaining some of them here (<!-- m --><a class="postlink" href="http://httpd.apache.org/docs/howto/ssi.html">http://httpd.apache.org/docs/howto/ssi.html</a><!-- m -->) (for Apache).<br />
<br />
If you don't have SSI available, you can get the same effect with another language such as PHP or ASP.<br />
<br />
Adam<!--content-->
 
Back
Top