Blog
Thoughts about programming, design, and life in general.
-
How do I include one file in another with PHP?
This is my favorite approach to including one file in another, but it means your server has to be running PHP and all of your file names need to be named .php instead of .html. If you’re not sure if your web hosting runs PHP you’ll have to check with them otherwise you can follow these instructions to see if it works.
Read more... -
How do I include one HTML file in a another with HTML includes.
I recently used HTML (Server Side) Includes to convert an old iFrame site into a table-less iframe-less site. Here’s a quick bit on how to do this.
Read more... -
How do I make images flexible height and width?
This is easy stuff.
Read more... -
How do I define multiple CSS attribues in JQuery?
You can string up your classes this way.
Read more... -
Can a span have a width?
Yes. Since a span tag is an inline element and it has “display:inline” as default, it doesn’t naturally have a width.
Read more...