Tag Archives: HTML

How To Put Text Beside A Picture With HTML,CSS

What you are probably looking for is the float property. You can use float:left; or float:right; (there are other options as well, but these are most common). you would do something like this <img src=”image path” style=”float:left; padding:5px; border:0px;” /> This will allow text or anything else to be next to the image.  The padding [...]

Easy PHP and Html Bar Graph

I want to show you a quick and simple way to create a bar graph using HTML. You need a graphic file that’s just 1 pixel wide and 5 px tall. Make it whatever color you want your bars to be. I named mine CountBar.gif. In my example, I have an array of data for [...]