/Home /Professional /Papers /Web Page Design
Contents |
IntroductionKIS, 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 website 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. Website 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
|
Mechanical PrinciplesThe primary principle is to make the website 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 website because of changes in other websites. Avoid changes in your website that will break links from other websites.
|
Visual PrinciplesThe primary principle is to make the website and pages as easy to read and understand as possible.
|
Search PrinciplesOne 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.
|
Coding PrinciplesThe 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"> <META HTTP-EQUIV="Content-Type" Content="text/html; charset=iso-8859-1"> <!"-- 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 website is designed to be compatible with all browsers having HTML version 3.2 support. <BR> WebMaster: Web Designer Name <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"> <META HTTP-EQUIV="Content-Type" Content="text/html; charset=iso-8859-1"> <!"-- 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 website page. <P> <HR> Revised 2004-05-05 |
Revised 2011-09-09