I spend a large portion of my day connected to the internet, and as a result I’ve amassed a large collection of websites and links pertaining to web development. Here’s 10 of my favorites:
1. Web Developer’s Field Guide
A collection of links that web builder Wade Meredith has created over time. A big resource list, and [...]
Here is a easy way to do image mouseover with only CSS.
you need designer to do a double image. Place the main image and mouseover image in one image. like this.
Now use this CSS code. Note the use of the Height and width. also the overflow and background attachment.
.download {
background:url(images/download_btn.gif) no-repeat 0 0;
display:block;
height:50px;
margin-left:8px;
outline:none;
overflow:hidden;
text-indent:-9999px;
width:127px;
}
.download:hover{
background:url(images/download_btn.gif) no-repeat 0 [...]
Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and [...]