Archive for the 'Beginning Html' Category

Frames: Why and Why Not

Saturday, December 15th, 2007

There Are Reasons to Use Frames, And Reasons Not To I must admit, I hated frames. When our company switched to a framed front page to our site, I was tempted to quit. Our site was redesigned by a design firm who felt that frames were the only way […]

Search Engine Friendly Web Design - 3 Ways to Use CSS

Saturday, December 15th, 2007

This article will point out 3 simple and highly effective web design techniques that use cascading style sheets to improve your web design and make your website perform better in the major search engines. First of all, what is CSS? CSS stands for cascading style sheets and CSS is a way of separating presentation code […]

Creating a Favicon (Favorite Icon) for a Web Page

Sunday, December 9th, 2007

If you’re using Internet Explorer 5 or above, you’ve probably noticed that some web sites you’ve placed within your “Favorite Places” have an icon beside them. You can easily create a custom icon for your web site […]

Preloading Images within a Web Page

Sunday, December 9th, 2007

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>

[…]

Using META Tags for Web Page Transitions

Sunday, December 9th, 2007

If you would like to spice up your web pages on entry, select one of the following codes and place it between your <HEAD> and </HEAD> tags.

<META http-equiv=”Page-Enter” CONTENT=”RevealTrans(Duration=4,Transition=1)”>

The […]