Navigation Bar
Gaudette-Net, LLC Gaudette-Net, LLC
curve

Page Created:
08Nov1999

Latest Update:
Fri, May 11, 2007



Index
· Home
· Contact
· Web Design
· Hardware
· Software
· Technology
· Information
· Rates





Contact Us
Send us e-mail and feedback

About Gaudette-Net
Learn more about Gaudette-Net, its founder, and more.

Search






Index
· Home
· Contact
· Web Design
· Hardware
· Software
· Technology
· Information
· Rates




Valid CSS!


This Web site, its underlying code, its text, and its graphics are not to be reproduced without permission.

Copyright 2001-2007 Gaudette-Net, LLC

 

Creating A Web Page

Preliminaries

Web pages are text files that include special formatting and refer to image files. So, to create a Web page all you need is a text editor, (like Microsoft's Note Pad or Apple's TextEdit.) When you save the file just make sure the file ends in ".html" (instead of ".txt".) The rest is just details that we will get into below.

Basic Structure Example

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>

<HEAD>

<TITLE>My First Web Page</TITLE>

</HEAD>

<BODY>

Hello World!

</BODY>

</HTML>

Brackets and Closings

HTML needs to separate the encoding text (tag) from the displayed text. The less-than sign ("<") is used as a left bracket. The greater-than sign (">") is used as a right bracket. You can see this in the Basic Structure Example above.

Closing the tag is done by repeating the tag but with a forward-slash ("/").

White Space

A space, a tab, and a carriage return is all the same in HTML -- a single blank space or white space. Multiple spaces will just get you a single space. Also "text wrapping" at the end of a line will be completely unpredictable from within your text editor.

Basic Tags

HTML - the whole document's all encompassing container.
HEAD - container for the header information that defines the page but is not shown on the page.
TITLE - the title in the browser window and shown as the link in search sites.
BODY - your page's displayed text and images are within this container.
H1 - headlines (H1, H2, H3, H4, H5, H6 are displayed as bold text at successively smaller sizes.)
P - paragraph container
BR - line break, (one of the few tags that is an element and not a container -- thus no closing tag is needed.)
IMG - this element places an image on the page, (remember to define what image, alternate text, width, and height.)
A - anchor, creates a clickable hyperlink to some other page or item on the Web.

Attributes

Many tags stand alone, just as they are in the Basic Structures Example above. Other tags need additional information to be meaningful. For instance the IMG tag needs the file name for the image. Another example is the anchor tag that needs the Web address to be linked. These additional descriptors are know as attributes and always appear within the tag's brackets.

IMG Example:

<IMG SRC="my_picture.jpg" ALT="Photo, 24KB, JPEG" WIDTH="150" HEIGHT="200">

Anchor Example:

<A HREF="http://www.w3.org">World Wide Web Consortium</A>

All The Tags

HTML Elements is a Web page showing all the HTML 4.0 tags and if they work in the popular browsers.

Color and Style

Modern HTML coding uses Cascading Style Sheets to set backgrounds, text color, and other style aspects in Web pages. Cascading Style Sheets are outside this document's scope. Any good HTML reference can teach you style sheets.

Spelling and Grammar

(1) Please avail yourself of any good dictionary, though I prefer Webster's Unabridged Dictionary of the English Language.

(2) Use the active voice to reduce sentence size and get to the point.

(Passive) Please use the links below to go to the page of your choice.

(Active) Choose your page by using the links below.

(3) You should always avoid multiple excamation points (!).

Image Notes

(1) Use the Portable Network Graphics (PNG) format for low color line-art and use the JPEG format for photographs.

(2) Consider, as a rule of thumb, that your image will take one second per kilobyte for your audience to download on a 56K dial-up line; even though it shouldn't really take that long.

Further Reference

Free Images & Graphics Applications

  • Clip Art Site
  • Paint Shop Pro, a one month demo, runs on MS Windows 95, 98, 2000, and MS Windows NT 4.
  • Graphic Converter, fully functional shareware, runs on Apple Mac OS.
  • Gimp, free Photoshop alternative, runs on Linux OS.
  • The credits page for my Web site is also a good place to get some leads.


space
© 2004 Gaudette-Net, LLC logo
Navigation Bar