Explore our tips to get the most out of your website

How to Change the Color of the Text on Your Web Page

By cindy cullen | Sep 13, 2010

We used to add some color to our pages with the <font> tag, but since that tag has been deprecated, we need to use CSS to change the color. Since CSS can be put inline, we could just add it […]

How to List the Files in a Directory With PHP

By cindy cullen | Sep 12, 2010

I needed to find the disk spaced used by members of a website yesterday. Each member’s files are in a separate directory (or folder), so I basically needed to check the size of each file in each member’s folder and […]

How to Get The ID From a Draggable Item with jQuery

By cindy cullen | Sep 11, 2010

Problem: I have a list of photos that I’ve uploaded.  I want to drag a photo from the pool of photos to a gallery or album.  So, basically I have two lists of items.  I’m dragging items from one list […]

How to Add an Image to Your Web Page

By cindy cullen | Sep 10, 2010

To add an image to your web page, you will need to use the image tag: <img src=”/pathToImage/imageName.jpg” /> If my image is named sunshine.jpg and is in the same folder as my web page, it would look like this: […]

How to Make Your Web Page Name (Title) Show in Your Browser’s Tab or Window Border

By cindy cullen | Sep 9, 2010

The head section of your HTML page needs a title tag. If you don’t have one, you may see the file name or some other random text in your browser’s tab or border. To make your web page title show […]

Scroll to Top