DH Templates

where can I download a free css template, which will have an index.php file?

I want a css template which I can modify to make my own webpage. But every template I download has index.html file as the base file. I don't know much php, and I prefer a readymade index.php file so that I can make my page. Can I download such a template for free.

Public Comments

  1. When you download a web template, the index file will probably be index.html, as that is what mainly perople use for static site. PHP is a server side language, used for dynamic sites. Most templates will not use PHP becasuse it is not needed in that template But when you do download the template, its is very easy to start using PHP in it. Just rename the file index.php, and you can start using it (if you have php on your server), normal HTML will work in it too. Have fun web deving!
  2. Normally you should get a templatename.css file which contains the stylesheet. Then you can use that stylesheet by referring to it from the <head> of your HTML pages (output from PHP) with <link rel="stylesheet" type="text/css" href="templatename.css" />
Powered by Yahoo! Answers