Explore our tips to get the most out of your website
How to Change the Color of the Text on Your Web Page
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
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
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
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: […]
- « Previous
- 1
- …
- 20
- 21
- 22