Html Startup
     Before starting on html code a quick reminder of windows short-cuts as you may well be cutting and pasting and swapping windows a lot,
 
Select all = Ctrl + A 
Copy to clipboard = Ctrl + Insert 
Swap Windows = Alt +Tab
Paste from clipboard = Up Arrow + Insert
 
    If your using wysiwyg web page creater/writer/composer then most of this page won't be important to you as the package will do all this for you but it may be of interest to you.

    What you see below is a typical page with just a heading and this text (yes it's this page) as seen as source code or if you viewed/edited the file using a text editor (which is all you really need to do html files). To simplify things lets stick to the basics:-
<HTML> tells yours system it's dealing with a html file a, you should also note that the last command is </HTML> from you should be able to work out looking at the rest of it that most commands are switched off with / command as in <TITLE>Start Up Html Pages</TITLE>
 
<HTML>
<HEAD>
   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
   <META NAME="Author" CONTENT="nik">
   <META NAME="GENERATOR" CONTENT="Mozilla/4.05 [en] (Win16; I) [Netscape]">
   <TITLE>Start Up Html Pages</TITLE>
</HEAD>
 
<HEAD> this section down to </HEAD> contains info about the creator of the page, system used and page titles see also content for now the important one is <TITLE>Start Up Html Pages</TITLE> if you check the top line of your screen whatever is in <TITLE> will be displayed up there.
    The defaults for text size/alignment is 12 left justified so to change this you'd have to use <CENTER><FONT SIZE=+4>Html Startup</FONT></CENTER> which in this case is 2 sizes up and centre justified for my title.
    You may notice, reading the source code  &lt;  this replaces < in displayed text otherwise the browser would think it was the start of a comand and not show < so in the source code shown at the bottom of each of these pages you will see &lt; quite a lot.
 
<BODY> - This is where your displayed page starts
</BODY> - This the end of your displayed page
 

TEXT STYLES
 
<ADDRESS>Address</ADDRESS> - Address this affects everthing on the line

<B>bold text </B>instead of normal - bold text instead of normal

<H?>  these affect everthing on the line

<H1>Heading 1</H1> - Heading 1

<H2>Heading 2</H2> - Heading 2

<H3>Heading 3</H3> - Heading 3

<H4>Heading 4</H4> Heading 4

<H5>Heading 5</H5> - Heading 5
<H6>Heading 6</H6>Heading 6
<I>italic</I> - italic

<U>underlined</U> - underlined
 

OTHER CODE
 
&nbsp; - a single space, if you find a blank line vanishes between paragraphs or instead of seeing a blank cell in a table, it's because you must have a space.
 
&lt; - < lessthan
 
&gt; - > greater than
 
&amp; - & ampersand
 
&copy; - © copyright
 
&reg; - ® registered
 
 <BLOCKQUOTE> </BLOCKQUOTE> - you'll notice I use this alot all it does is to Indent the text/images so you get a nice gap either side of the screen. ( well I like it)
 
<BR> Line Break
 
<P> - Begin new paragraph  </P> - End new paragraph (optional)
 
<HR SIZE=5 WIDTH="100%"> - horizontal line see below, size = height, width is % of screen
  
 
ALIGNMENT of text or images
 
Right <DIV ALIGN=right> or Centre <CENTER> as left is the default it doesn't have a command
 
<CENTER><FONT SIZE=+1>-standard centre justified</FONT></CENTER> - standard centre justified
<DIV ALIGN=right><FONT SIZE=+1>- standard right justified</FONT></DIV> - standard right justified
 
<FONT SIZE=+1>- standard left justified</FONT> - standard left justified, just font commands
 One finally note on this page, change the size of your screen occasionally and see what your pages look like as whatever your screen is set at, someone else will use a different size, having used a few PCs with 1024 x 768 screen ouput and I use 800 x 600 at home but others use 640 x 400 so remember it will look different on each, especailly if break the text into lines so might find on a different screen each line becomes 1 line followed by an odd word or so. I try to stick with paragraphs and let it sort itself out.
 
Back to Omni-Web PageBack to Omni-Web Page
 
Source Code
 <HTML>
<HEAD>
   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
   <META NAME="Author" CONTENT="nik">
   <META NAME="GENERATOR" CONTENT="Mozilla/4.05 [en] (Win16; I) [Netscape]">
   <TITLE>Start Up Html Pages</TITLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFCC" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">

<H6>
<SCRIPT language=javascript>document.writeln(" last updated " + document.lastModified);</SCRIPT>
</H6>

<CENTER><FONT SIZE=+4>Html Startup</FONT></CENTER>

<BLOCKQUOTE><FONT SIZE=+1>&nbsp;&nbsp;&nbsp;&nbsp; Before starting on html
code a quick reminder of windows short-cuts as you may well be cutting
and pasting and swapping windows a lot,</FONT></BLOCKQUOTE>
&nbsp;
<CENTER><TABLE BORDER=0 CELLSPACING=10 COLS=2 WIDTH="90%" >
<TR>
<TD>
<CENTER><FONT SIZE=+1>Select all = Ctrl + A&nbsp;</FONT></CENTER>
</TD>

<TD>
<CENTER><FONT SIZE=+1>Copy to clipboard = Ctrl + Insert&nbsp;</FONT></CENTER>
</TD>
</TR>

<TR>
<TD>
<CENTER><FONT SIZE=+1>Swap Windows = Alt +Tab</FONT></CENTER>
</TD>

<TD>
<CENTER><FONT SIZE=+1>Paste from clipboard = Up Arrow + Insert</FONT></CENTER>
</TD>
</TR>
</TABLE></CENTER>
&nbsp;
<BLOCKQUOTE><FONT SIZE=+1>&nbsp;&nbsp;&nbsp; If your using wysiwyg web
page creater/writer/composer then most of this page won't be important
to you as the package will do all this for you but it may be of interest
to you.</FONT>

<P><FONT SIZE=+1>&nbsp;&nbsp;&nbsp; What you see below is a typical page
with just a heading and this text (yes it's this page) as seen as source
code or if you viewed/edited the file using a text editor (which is all
you really need to do html files). To simplify things lets stick to the
basics:-</FONT>
<BR>&lt;HTML> <FONT SIZE=+1>tells yours system it's dealing with a html
file a, you should also note that the last command is </FONT>&lt;/HTML><FONT SIZE=+1>
from you should be able to work out looking at the rest of it that most
commands are switched off with / command as in </FONT>&lt;TITLE>Start Up
Html Pages&lt;/TITLE>
<BR>&nbsp;
<BR>&lt;HTML>
<BR>&lt;HEAD>
<BR>&nbsp;&nbsp; &lt;META HTTP-EQUIV="Content-Type" CONTENT="text/html;
charset=iso-8859-1">
<BR>&nbsp;&nbsp; &lt;META NAME="Author" CONTENT="nik">
<BR>&nbsp;&nbsp; &lt;META NAME="GENERATOR" CONTENT="Mozilla/4.05 [en] (Win16;
I) [Netscape]">
<BR>&nbsp;&nbsp; &lt;TITLE>Start Up Html Pages&lt;/TITLE>
<BR>&lt;/HEAD>
<BR>&nbsp;
<BR>&lt;HEAD> <FONT SIZE=+1>this section down to </FONT>&lt;/HEAD> <FONT SIZE=+1>contains
info about the creator of the page, system used and page titles</FONT>
<FONT SIZE=+1>see also <A HREF="content.htm">content</A> for now the important
one is </FONT>&lt;TITLE>Start Up Html Pages&lt;/TITLE> <FONT SIZE=+1>if
you check the top line of your screen whatever is in </FONT>&lt;TITLE><FONT SIZE=+1>
will be displayed up there.</FONT>
<BR><FONT SIZE=+1>&nbsp;&nbsp;&nbsp; The defaults for text size/alignment
is 12 left justified so to change this you'd have to use </FONT>&lt;CENTER>&lt;FONT
SIZE=+4>Html Startup&lt;/FONT>&lt;/CENTER> <FONT SIZE=+1>which in this
case is 2 sizes up and centre justified for my title.</FONT>
<BR>&nbsp;&nbsp;&nbsp; <FONT SIZE=+1>You may notice, reading the source
code&nbsp; </FONT>&amp;lt;&nbsp;<FONT SIZE=+1> this replaces &lt; in displayed
text otherwise the browser would think it was the start of a comand and
not show &lt; so in the source code shown at the bottom of each of these
pages you will see &amp;lt; quite a lot.</FONT>
<BR>&nbsp;
<BR><FONT SIZE=+1>&lt;BODY> - This is where your displayed page starts</FONT>
<BR><FONT SIZE=+1>&lt;/BODY> - This the end of your displayed page</FONT>
<BR><FONT SIZE=+1>&nbsp;</FONT>
<CENTER><FONT SIZE=+2>TEXT STYLES</FONT></CENTER>

<CENTER>&nbsp;</CENTER>

<ADDRESS>
&lt;ADDRESS>Address&lt;/ADDRESS> - Address this affects everthing on the
line</ADDRESS>
 

<P>&lt;B>bold text &lt;/B>instead of normal<FONT SIZE=+1> - <B>bold text
</B>instead of normal</FONT>

<P>&lt;H?>&nbsp;<FONT SIZE=+1> these affect everthing on the line</FONT>
<H1>
&lt;H1>Heading 1&lt;/H1> - Heading 1</H1>

<H2>
&lt;H2>Heading 2&lt;/H2> - Heading 2</H2>

<H3>
&lt;H3>Heading 3&lt;/H3> - Heading 3</H3>

<H4>
&lt;H4>Heading 4&lt;/H4> Heading 4</H4>

<H5>
&lt;H5>Heading 5&lt;/H5> - Heading 5</H5>

<H6>
&lt;H6>Heading 6&lt;/H6>Heading 6</H6>
&lt;I>italic&lt;/I> <FONT SIZE=+1>- <I>italic</I></FONT>

<P>&lt;U>underlined&lt;/U> <FONT SIZE=+1>- <U>underlined</U></FONT>
<BR>&nbsp;
<CENTER><FONT SIZE=+2>OTHER CODE</FONT></CENTER>
&nbsp;
<BR>&amp;nbsp;<FONT SIZE=+1> - a single space, if you find a blank line
vanishes between paragraphs or instead of seeing a blank cell in a table,
it's because you must have a space.</FONT>
<BR>&nbsp;
<BR>&amp;lt; - <FONT SIZE=+1>&lt; lessthan</FONT>
<BR>&nbsp;
<BR>&amp;gt; <FONT SIZE=+1>- > greater than</FONT>
<BR>&nbsp;
<BR>&amp;amp; <FONT SIZE=+1>- &amp; ampersand</FONT>
<BR>&nbsp;
<BR>&amp;copy; <FONT SIZE=+1>- &copy; copyright</FONT>
<BR>&nbsp;
<BR>&amp;reg; <FONT SIZE=+1>- &reg; registered</FONT>
<BR><FONT SIZE=+1>&nbsp;</FONT>
<BR>&nbsp;&lt;BLOCKQUOTE> &lt;/BLOCKQUOTE> <FONT SIZE=+1>- you'll notice
I use this alot all it does is to Indent the text/images so you get a nice
gap either side of the screen. ( well I like it)</FONT>
<BR>&nbsp;
<BR>&lt;BR> <FONT SIZE=+1>Line Break</FONT>
<BR>&nbsp;
<BR>&lt;P><FONT SIZE=+1> - Begin new paragraph</FONT>&nbsp; &lt;/P><FONT SIZE=+1>
- End new paragraph (optional)</FONT>
<BR>&nbsp;
<BR>&lt;HR SIZE=5 WIDTH="100%"><FONT SIZE=+1> - horizontal line see below,
size = height, width is % of screen</FONT></BLOCKQUOTE>
<FONT SIZE=+1>&nbsp;</FONT>&nbsp;
<HR SIZE=5 WIDTH="100%">
<BLOCKQUOTE>&nbsp;
<CENTER><FONT SIZE=+1>ALIGNMENT of text or images</FONT></CENTER>

<CENTER><FONT SIZE=+1>&nbsp;</FONT></CENTER>

<CENTER><FONT SIZE=+1>Right </FONT>&lt;DIV ALIGN=right> <FONT SIZE=+1>or
Centre </FONT>&lt;CENTER> <FONT SIZE=+1>as left is the default it doesn't
have a command</FONT></CENTER>

<CENTER><FONT SIZE=+1>&nbsp;</FONT></CENTER>

<CENTER>&lt;CENTER>&lt;FONT SIZE=+1>-standard centre justified&lt;/FONT>&lt;/CENTER>
<FONT SIZE=+1>- standard centre justified</FONT></CENTER>
</BLOCKQUOTE>

<DIV ALIGN=right>&lt;DIV ALIGN=right>&lt;FONT SIZE=+1>- standard right
justified&lt;/FONT>&lt;/DIV> <FONT SIZE=+1>- standard right justified</FONT></DIV>
&nbsp;
<BR>&lt;FONT SIZE=+1>- standard left justified&lt;/FONT> <FONT SIZE=+1>-
standard left justified, just font commands</FONT>
<BLOCKQUOTE>
<CENTER>&nbsp;<FONT SIZE=+1>One finally note on this page, change the size
of your screen occasionally and see what your pages look like as whatever
your screen is set at, someone else will use a different size, having used
a few PCs with 1024 x 768 screen ouput and I use 800 x 600 at home but
others use 640 x 400 so remember it will look different on each, especailly
if break the text into lines so might find on a different screen each line
becomes 1 line followed by an odd word or so. I try to stick with paragraphs
and let it sort itself out.</FONT></CENTER>

<CENTER>&nbsp;</CENTER>

<CENTER><A HREF="../index.htm"><IMG SRC="../but_home.gif" ALT="Back to Omni-Web Page" BORDER=0 HEIGHT=32 WIDTH=128></A><A HREF="index.htm"><IMG SRC="../but_htm.gif" ALT="Back to Omni-Web Page" BORDER=0 HEIGHT=32 WIDTH=128></A> </CENTER>

<CENTER><FONT SIZE=+2>&nbsp;</FONT></CENTER>

<CENTER><FONT SIZE=+2>Source Code</FONT></CENTER>
&nbsp;</BLOCKQUOTE>

</BODY>
</HTML>