Archive for the ‘HTML’ Category

css3 image zoomer

<!DOCTYPE html> <html> <head> <title>CSS3 Image Zoom</title> <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″> <style> body{ text-align: center; } a{ color: #0077ff; text-decoration: none; } #zoom{ width: 320px; height: 240px; -webkit-transition: 0.25s; } #zoom:target{ width: 640px; height: 480px; } </style> </head> <body> <a href=”#zoom”>Zoom In +</a> | <a href=”#”>Zoom Out -</a> <p> <img src=”images/image.jpg” id=”zoom”> </body> </html> Check [...]

Preventing Browser Cache

If you’re looking for a way to prevent browser cache, this HTML tip will assist you. Meta tags are used to give detailed instructions in regard to a web page to the Search Engines and browsers. When you get visitors coming to your web site, your visitors browser will cache or make a copy of [...]

Increase Your Traffic by Recovering Your Lost Visitors

If you spend any time surfing the Internet, you’ve probably encountered a few error messages. Error messages have numerous causes, such as misspellings, outdated links or internal server errors. When an error is encountered, your server will display specific generic error pages according to the error. These error pages are not only dead ends, but [...]

Facility to include an icon to represent your site

What is a Favicon? Favicon stands for “Favorites Icon”. It’s the little icon beside your site’s name in the favorites list, before the URL in the address bar, as a bookmarked website on the desktop, in the “Links” bar and on the windows task bar. Why does Favicon.ico Show Up as a 404 in the [...]