Your Guide to Professional
Web Site Design and Development

• HTML Tips
• HTML Codes
• Web Development
• Web Design Tips
• JavaScript Codes
• 216 Web Safe Colors
• CSS Tutorial
• JavaScript Tutorial
•
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design Tips | Javascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Preloading Images within a Web Page


If you would like to preload an image so that it will display when the page loads, place the following code between your <HEAD> and </HEAD> tags.

<SCRIPT language="JavaScript">
<!--
var preload=new Image();
preload.src="(image.gif)";
-->
</SCRIPT>

Change the text indicated in red to your image.

By preloading your images, you can increase your web site's load time.

 More Web Design Tips