Archive for the 'HTML' Category

Simple CSS Vertical Navigation using a list

Friday, November 10th, 2006

Haven’t posted much on web design or CSS for a while, so I thought I’d jot down something that (a) readers will find useful and (b) something I can refer to in the future. A nice way to create a navigation piece in a web page is to use the good old HTML list tag. […]

The <img> tag

Thursday, January 5th, 2006

In HTML and XHTML the img element defines an image. The major difference between HTML and XHTML is in HTML the <img> tag has no end tag:
<img src=”test.gif”>
whereas in XHTML the <img> tag must be properly closed:
<img src=”test.gif” />
I’ve often wondered why the alt attribute text doesn’t show on image mouse-over in the […]