Web Page Design

Simple Principles and Concepts for simple informational web sites.

/Home /Professional /Papers /Web Page Design

Contents

Introduction

KIS, Keep It Simple, is the highest design principle. Simple design techniques are to be emphasized. Simple presentations are often the most effective. The idea is to inform not dazzle. The goal is to present substance instead of flash.

If you want your web site to be 'cool' or you are trying to impress or entertain then these principles are not for you.

HTML is ideal for word processing of simple presentations. These principles use HTML version 3.2 exclusively. Later versions introduced excessive complication. Web site design is to be compatible with all browsers.

Using simplicity makes direct coding of HTML reasonable. Word processors have a tendency to be excessively complicated and encourage outrageous presentations. There is also danger in becoming obssessed with excessive attention to the minute and unimportant details of style.

Definitions

Audience
The people you want to see the information on your web page.

Customer
The person who will be viewing the web page.

Home Page
The first web page of a domain URL. An example of a domain URL:
www.domain.com
This page is usually named 'index.html'.

Web Site
A collection of web pages available from the home page.

Web Page
A single HTML file.

Window
The visible display area of a web page. The web page content may not all be visible at one time. Additional content may require vertical scroll. The size of the window is a customer selected preference.

Mechanical Principles

The primary principle is to make the web site and pages operate as smoothly and quickly as possible. There are some mechanical principles of web page design that are often overlooked.

Design for slow connections and overloaded networks.

There are numerous reasons why bandwidth may be limited. Plan for low throughput (32kbps - dialup) as a worse case. Every page must begin displaying within seconds.

Design for a wide range of window sizes.

The presentation must adapt to large and small windows. Plan to be viewable in a 640 by 480 pixel window. Leave room for scroll bars, status lines and such. Test for layout problems in a 1280 by 960 pixel window or the maximum available.

Design for a stable web page.

Avoid problems with your web site because of changes in other web sites. Avoid changes in your web site that will break links from other web sites.

Visual Principles

The primary principle is to make the web site and pages as easy to read and understand as possible.

Search Principles

One of the purposes of creating a web page is to make information available. There are several ways to reach your audience.

Unfortunately, there is one group you don't want to be able to search easily. Spammers. You might choose to avoid placing a mailto or recognizable email address on a web page.

Possible substitute: "Webmaster at Domain.com"

Publicize your web page.

Design for search placement.

Web search is a common method your audience will use to locate your information. These are some simple design step by step methods.
  1. Keyword design is the most important thing to do. Keywords are what your audience will use to locate your information. The web page title and subtitle are the first source for your keywords. After you define your keywords the title and subtitle may need to be revised to match your target keywords. Remember that each page on your site can have a different set of keywords.

  2. Test your keywords in several search engines. Use several combinations of your primary and secondary keywords. Make sure the keywords turn up sites related to your information. Look at the source for the web pages and note how the keywords are incorporated. Study how the search engine displays the site.

  3. Code the keywords into your page title and beginning headings. The page title will become the search title of your site. The heading information will become the descriptions of your site.

  4. Submit your site to search engines. This will require research to determine how and what to submit.

  5. Search regularly for your site. When you find your site be sure to select it and don't go back to the same search engine until after you perform a search through another engine. Remember that it takes days and maybe weeks for your site to appear. Use various keyword combinations. Don't search the same engine with the same keywords too often in the same day.

Coding Principles

The primary principle is to make the HTML code as easy to develop, read, and maintain as possible. Only simple and minimal codes are used so it is often easiest to write manually.

I often use NotePad to write HTML code. Word processors create excess and unnecessary code. This results in code with problems and poor performance. Browser incompatibility is the worst problem.

Example Home Page

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!"-- http://www.Domain.com/index.html" -->

<TITLE>
Example Home Page
</TITLE>

<H1 ALIGN = CENTER>
Example Home Page
</H1>

<HR size = 3 >

<P ALIGN = CENTER>
Person at Domain.com

<BR>
<A HREF="http://www.Domain.com">
www.Domain.com
</A>

<HR>

<P>
<TABLE align=center>
<TR>
<TD>
<A HREF="Example.html">
Example</A>
Revised 2004-02-27

<P>
<A HREF="Page2.html">
Page 2</A>
Revised 2004-02-20

</TABLE>

<P>
<HR>

<P ALIGN = CENTER>

This web site is designed to be compatible with all browsers
having HTML version 3.2 support.

<BR>
WebMaster: Web Designer

<BR>
WebMaster at Domain.com

<BR>
<A HREF="http://www.Web-Designer-Site.com"> www.Web-Designer-Site.com
</A>

<HR>
Revised 2004-05-05

Example Web Page

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!"-- http://www.Domain.com/Example.html" -->

<TITLE>
Example Web Page
</TITLE>

<H1 ALIGN="CENTER">
Example Web Page
</H1>

/<A HREF = "index.html">Home</A>
/Example

<HR size = 3 >

<P>
Informational text on a web site page.

<P>
<HR>
Revised 2004-05-05


Revised 2005-10-29

Valid HTML 3.2!