Archive for the ‘ Web ’ Category

What is the difference between Span and Div tag

December 19th, 2009   By admin   Posted in Web | Comments Off

There is one difference between div and span. In standard HTML, a div is a block-level element whereas a span is an inline element. The div block visually isolates a section of a document on the page, in the same way as a paragraph. The span element contains a piece of information inline with the surrounding text. (more…)


Social Bookmarking

Practices for Speeding up Web Site

October 18th, 2009   By admin   Posted in Web | Comments Off

80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page:  Images, Style sheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages. (more…)


Social Bookmarking

CSS Sprites

August 26th, 2009   By admin   Posted in Web | Comments Off

You’ve heard of them, but… Do you really understand them? The name might be a little misleading, because sprites aren’t little images like you might be picturing, a sprite is actually one big image. Have you ever seen the CSS technique where the “on” and “off” states of a button are contained within the same image and are activated by shifting the background-position? Think of CSS Sprites as an extension of that technique. The difference is that instead of just two or three images being combined into one, you can combine an unlimited number of images into one. (more…)


Social Bookmarking