SlideShare a Scribd company logo
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au


All Creative Designs

Basic HTML for PC Tutorial Part 2
Using MS Notepad
Revised Version June 2010

My First Web Page

This tutorial will add backgrounds to the table and body, font colors, borders, hyperlinks
and more to your web page created in Part 1.

We didn’t specify a font color, font type or body color in our first web page and so by
default the internet browser will show a white body background, the font type will be
Times New Roman in black and no borders are shown. To change this we will add extra
elements within our HTML tags.

Step 1

Open your index.html file we created in Part 1
Navigate to your index.html file and single right click, select Open With and left click
Notepad. See figure 1




                                                                          Figure 1




Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     1 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au



Step 2

Go to our Background Gallery page and click on Backgrounds Folder Page 3

http://www.allcreativedesigns.com.au/ pages/gallbackgrounds3.html
You might have to type or copy and paste this address into your browser if viewing the PDF version

Scroll down and left click Tiling Background ‘Water Aqua’. Right click the new small
window and select copy than paste into your my_fisrt_webpage folder. Make sure you
right click directly over the image; otherwise the option of Copy will not show. Repeat
process with the Tiling Background called Green Fading. (Again click directly on the
image)
(See figure 2)




                                                                              Figure 2




Step 3

Start with the Body tag (new addition are shown in green)

Change the body tag in your index.html file to this:
<body background=” tilebgWaterAqua.jpg”>
This will set your body background to the above image.

Change the table tag in your index.html file to this:
<table align=”center” background=” tilebgFadegreen2H.jpg” border=”1”>
This will set your table background to the above image and create a border around the
table at size 1.
Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                        2 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
 without the written permission by Peter Krisch of allcreativedesigns.com.au


 Remember do not copy and paste from MS Word and check your spelling.

 In your notepad index.html document click file in top menu bar and click save.

 In windows explorer (My Computer) navigate to your my_first_webpage folder and
 double left click your index.html file. Your web page should open in your default web
 browser i.e. Internet Explorer or Mozilla Fire Fox.
                                                                   Table
 View of updated web page (See figure 3)
                                                      First Column              Second Column


First row                               Cell                                             Cell



Second row                              Cell                                             Cell




                                                                     Figure 3
            Body



 Overlaid text boxes explain the table structure.
 You might like to repeat the process with two tiling backgrounds of your choice.

 Step 4

 Continue with the first row tag (new addition are shown in green)
 <tr bgcolor=”black”>
 Note color is spelt without the u, the American way, spelling it colour will not work.
 This will set the background color of the first row to black.

 As our headline font is black by default it will disappear, so we will change it to white.
 To do this wrap font tags around the headline text
 <td><h1><font color=”white”>Fred’s Home Page</font></h1></td>

 It would look better with our headline centered, for this we include a center tag around
 the headline tags.
 <td><center><h1><font color=”white”>Fred’s Home Page</font></h1></center></td>

 Specifying color by name:
 All major colors will work; try aqua, cyan, pink or others.
 Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     3 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au

Specifying color by Hexadecimal Code will be covered later.

Inserting Line breaks into your text
Use the <br /> tag to start a new line of text
<td>Type some text <br />HTML is written in the form of labels <br /> (known as tags or
elements), <br /> surrounded by angle brackets. </td>
The <br /> tag can be used for spacing in your web page, add three break tags after
your last word of text.
Note: There is no closing tag as forward slash is included in break tag.


Your notepad index.html document should look similar to this
(See figure 4)




                                                Figure 4




Save your updated web page:
In your notepad index.html document click file in top menu bar and click save.

View your web page:
In windows explorer (My Computer) navigate to your my_first_webpage folder and
double left click your index.html file to view your updated web page.
Your web page should look similar to this (See figure 5)




Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     4 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au




Gap



                                                          Figure 5




You may notice the size of the columns changing after you inserted breaks into your text
to avoid this specify the width of the first column.
<td width=”700”><h1><font color=”white”>Fred’s Home Page</font></h1></td>

To eliminate the gap on top of your webpage insert a top margin into the body tag.
<body background=” tilebgWaterAqua.jpg” topmargin=”0”>

To center your images in their columns wrap a center tag around your image tag.
<td><center><img src=”image_file_name.jpg” /></center></td>

Save your updated web page:
In your notepad index.html document click file in top menu bar and click save.



Step 5

Hyperlinks to other web sites

To link your web page to other web sites use the following code and insert after your last
three line breaks in the text column:
<td>Your Text<br /><br /><br />
<a href=http://www.google.com.au target=”blank” >Google Link</a></td>

Clicking the text Google Link in your web page will open the Google Home page in your
browser. Insert target=”blank” if you like Google to open up in its own browser window.
By default links are shown in colors and are underlined.




Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     5 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au


Links to E-mail addresses

If you like to be contacted through your e-mail address include the code below.
After the Google link type two <br /> tags than
<a href=http://www.google.com.au target=”blank” >Google Link</a><br /><br />
<a href=”mailto:username@yahoo.com.au”>Contact me</a></td>
Use your own e-mail address.

Clicking Contact me will open e-mail software like Outlook Express with your e-mail
address inserted.


Save your updated web page:
In your notepad index.html document click file in top menu bar and click save.

Your notepad index.html document should look similar to this
(See figure 6)




                                                              Figure 6




Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     6 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au


View your web page:




Trouble Shooting:

Most errors are caused by spelling mistakes and added or missing spaces in HTML
tags. Check for missing inverted comas and closing tags.

The third part of this tutorial explains:

How to create another web page and link it to your homepage. (The start of a little web
site)

Specifying color by Hexadecimal Code

How to use your own images

List of useful html tags and more

Have fun with your web page and experiment with different images, backgrounds and
colors.

Other tutorials available from www.allcreativedesigns.com.au
You might have to type or copy and paste this address into your browser if viewing the PDF version

www.allcreativedesigns.com.au/pages/tutorialbasicp1.html
HTML Web Page Tutorial using Notepad, PDF Download Page Part 1

www.allcreativedesigns.com.au/pages/tutorialbasicp3.html
Free PDF HTML Tag Tutorial using Notepad, Download Page Part 3


Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                        7 of 8
Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form
without the written permission by Peter Krisch of allcreativedesigns.com.au

www.allcreativedesigns.com.au/pages/webtutorialkompozer.html
Web Design Tutorial using KompoZer, PDF Download Page

www.allcreativedesigns.com.au/pages/tutorialpicasa.html
Picasa Photo Editing Tutorial, Free PDF Download Page

www.allcreativedesigns.com.au/pages/tutorialseo.html
SEO Tutorial Basic Search Engine Optimization PDF Download Page




Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch                     8 of 8

More Related Content

PDF
Html web designing 1
DOCX
Project report
PDF
Creating online questionnaires with Google Drive for quality feedback
PPT
Project 03 Creating Web Pages with Links, Images, and Formatted Text
PPTX
How to use Google docs to create a survey
PDF
PPT
Html presentation
Html web designing 1
Project report
Creating online questionnaires with Google Drive for quality feedback
Project 03 Creating Web Pages with Links, Images, and Formatted Text
How to use Google docs to create a survey
Html presentation

What's hot (20)

PPT
Google Forms
PPTX
Personalise Email Signature
PDF
Office 365 Productivity Tips - August Anarchy
PPTX
Office 365 Productivity Tips - August Anarchy
PPTX
Collecting data using google docs forms
PDF
What's New in Office 2016
DOC
Introduction to Gmail - Instructions
PPTX
Google slideshare tips by NEWOLDSTAMP
PPT
Html basics
PPTX
Microsoft outlook 2010
PPT
Chapter 9 - Web Design
PPT
Html ppt computer
PPT
Outlook2010 training presentation
PPTX
Step By Step To Create A Form Based On Google Docs
PDF
Students: How to survive in a digital world - Part 2
DOCX
How to use wordpress
PPTX
Html basic
PPTX
Office 365 Productivity Tips -- January Joust
DOCX
Instrucciones en ingles[1]
DOCX
Posterous Guide: The Easy Way to Blog
Google Forms
Personalise Email Signature
Office 365 Productivity Tips - August Anarchy
Office 365 Productivity Tips - August Anarchy
Collecting data using google docs forms
What's New in Office 2016
Introduction to Gmail - Instructions
Google slideshare tips by NEWOLDSTAMP
Html basics
Microsoft outlook 2010
Chapter 9 - Web Design
Html ppt computer
Outlook2010 training presentation
Step By Step To Create A Form Based On Google Docs
Students: How to survive in a digital world - Part 2
How to use wordpress
Html basic
Office 365 Productivity Tips -- January Joust
Instrucciones en ingles[1]
Posterous Guide: The Easy Way to Blog
Ad

Viewers also liked (8)

DOCX
Informe admisnitractivo
PPT
12 fallacies-091211092734-phpapp01
PDF
Presentation To Shaw Group Final Nov 6
PPTX
Akesiu mei moana tuuholoaki
PPTX
Publitapias URC
PPTX
Chapter 20 final 2
DOCX
8 b inggris
PPT
My favorite pastimes
Informe admisnitractivo
12 fallacies-091211092734-phpapp01
Presentation To Shaw Group Final Nov 6
Akesiu mei moana tuuholoaki
Publitapias URC
Chapter 20 final 2
8 b inggris
My favorite pastimes
Ad

Similar to Basic html tutoirialp2 (20)

DOCX
HTML Lab ProjectTo create a simple web page you will need to use.docx
PPT
Web pageassignment
PDF
Unit 2.3
PPT
HTML Intermediate
DOCX
HTML Lab ProjectTo create a simple web page you will need .docx
PDF
Web design in 7 days
PDF
Web design in 7 days by waqar
PDF
Basic HTML Tutorial For Beginners
PPTX
Adding text in html
DOC
Basic html training national
PPTX
HTML Presentation
PPTX
presentation_html_ppt_1534512076_351187.pptx
PDF
Html basics
DOC
Intermediate Web Design.doc
DOC
Intermediate Web Design.doc
PPTX
Module 3-Introduction to CSS (Chapter 3).pptx
PDF
Email Design Workshop - Don't Let Bad Email Code Ruin Your Day or Your Results
PPT
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
PDF
Introduction to html (912 kb)
PDF
Bcsl 013 solved-assignment-2019-20 without
HTML Lab ProjectTo create a simple web page you will need to use.docx
Web pageassignment
Unit 2.3
HTML Intermediate
HTML Lab ProjectTo create a simple web page you will need .docx
Web design in 7 days
Web design in 7 days by waqar
Basic HTML Tutorial For Beginners
Adding text in html
Basic html training national
HTML Presentation
presentation_html_ppt_1534512076_351187.pptx
Html basics
Intermediate Web Design.doc
Intermediate Web Design.doc
Module 3-Introduction to CSS (Chapter 3).pptx
Email Design Workshop - Don't Let Bad Email Code Ruin Your Day or Your Results
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Introduction to html (912 kb)
Bcsl 013 solved-assignment-2019-20 without

More from prasadmvreddy (20)

PDF
Installing and configuring windows deployment services
PDF
B.Tech I Year (R09) Regular , Supplementary June 2013
PDF
Jntua b.tech and_b
PDF
B.tech ii year ii semester (r09) regular & supplementary april may 2013
PDF
B tech ii yr i sem r9 supplementary may 2013
PDF
Iii b.tech. ii sem r09 regular april 2013
PDF
B tech iii year i (r09) semester regular supplementary examinations november ...
PDF
B tech ii year ii (r09) semester regular examinations april may 2012 results
PDF
B tech ii year i (r09) semester supplementary examinations may 2012 results
PDF
B tech ii year i (r09) semester regular supplementary examinations november 2...
PDF
B tech ii year i semester regular examinations november 2011 results
PDF
III B.TECH. II SEM R09 REGULAR APRIL 2013
PDF
Introduction to the theory of computation
PDF
B tech ii year ii (r07) semester supplementary
PDF
B tech iii year ii (r07) semester supplementary
PDF
B tech i year (rrr05 r07) supplementary
PDF
B tech iv year i (r07) semester supplementary
PDF
B tech iii year i (r07) semester supplementary
PDF
B tech ii year i (r07) semester supplementary
Installing and configuring windows deployment services
B.Tech I Year (R09) Regular , Supplementary June 2013
Jntua b.tech and_b
B.tech ii year ii semester (r09) regular & supplementary april may 2013
B tech ii yr i sem r9 supplementary may 2013
Iii b.tech. ii sem r09 regular april 2013
B tech iii year i (r09) semester regular supplementary examinations november ...
B tech ii year ii (r09) semester regular examinations april may 2012 results
B tech ii year i (r09) semester supplementary examinations may 2012 results
B tech ii year i (r09) semester regular supplementary examinations november 2...
B tech ii year i semester regular examinations november 2011 results
III B.TECH. II SEM R09 REGULAR APRIL 2013
Introduction to the theory of computation
B tech ii year ii (r07) semester supplementary
B tech iii year ii (r07) semester supplementary
B tech i year (rrr05 r07) supplementary
B tech iv year i (r07) semester supplementary
B tech iii year i (r07) semester supplementary
B tech ii year i (r07) semester supplementary

Recently uploaded (20)

PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Pharma ospi slides which help in ospi learning
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
Trump Administration's workforce development strategy
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
Classroom Observation Tools for Teachers
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Computing-Curriculum for Schools in Ghana
Pharma ospi slides which help in ospi learning
O5-L3 Freight Transport Ops (International) V1.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
STATICS OF THE RIGID BODIES Hibbelers.pdf
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Weekly quiz Compilation Jan -July 25.pdf
Final Presentation General Medicine 03-08-2024.pptx
Anesthesia in Laparoscopic Surgery in India
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Trump Administration's workforce development strategy
Microbial disease of the cardiovascular and lymphatic systems
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Classroom Observation Tools for Teachers
Chapter 2 Heredity, Prenatal Development, and Birth.pdf

Basic html tutoirialp2

  • 1. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au All Creative Designs Basic HTML for PC Tutorial Part 2 Using MS Notepad Revised Version June 2010 My First Web Page This tutorial will add backgrounds to the table and body, font colors, borders, hyperlinks and more to your web page created in Part 1. We didn’t specify a font color, font type or body color in our first web page and so by default the internet browser will show a white body background, the font type will be Times New Roman in black and no borders are shown. To change this we will add extra elements within our HTML tags. Step 1 Open your index.html file we created in Part 1 Navigate to your index.html file and single right click, select Open With and left click Notepad. See figure 1 Figure 1 Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 1 of 8
  • 2. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au Step 2 Go to our Background Gallery page and click on Backgrounds Folder Page 3 http://www.allcreativedesigns.com.au/ pages/gallbackgrounds3.html You might have to type or copy and paste this address into your browser if viewing the PDF version Scroll down and left click Tiling Background ‘Water Aqua’. Right click the new small window and select copy than paste into your my_fisrt_webpage folder. Make sure you right click directly over the image; otherwise the option of Copy will not show. Repeat process with the Tiling Background called Green Fading. (Again click directly on the image) (See figure 2) Figure 2 Step 3 Start with the Body tag (new addition are shown in green) Change the body tag in your index.html file to this: <body background=” tilebgWaterAqua.jpg”> This will set your body background to the above image. Change the table tag in your index.html file to this: <table align=”center” background=” tilebgFadegreen2H.jpg” border=”1”> This will set your table background to the above image and create a border around the table at size 1. Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 2 of 8
  • 3. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au Remember do not copy and paste from MS Word and check your spelling. In your notepad index.html document click file in top menu bar and click save. In windows explorer (My Computer) navigate to your my_first_webpage folder and double left click your index.html file. Your web page should open in your default web browser i.e. Internet Explorer or Mozilla Fire Fox. Table View of updated web page (See figure 3) First Column Second Column First row Cell Cell Second row Cell Cell Figure 3 Body Overlaid text boxes explain the table structure. You might like to repeat the process with two tiling backgrounds of your choice. Step 4 Continue with the first row tag (new addition are shown in green) <tr bgcolor=”black”> Note color is spelt without the u, the American way, spelling it colour will not work. This will set the background color of the first row to black. As our headline font is black by default it will disappear, so we will change it to white. To do this wrap font tags around the headline text <td><h1><font color=”white”>Fred’s Home Page</font></h1></td> It would look better with our headline centered, for this we include a center tag around the headline tags. <td><center><h1><font color=”white”>Fred’s Home Page</font></h1></center></td> Specifying color by name: All major colors will work; try aqua, cyan, pink or others. Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 3 of 8
  • 4. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au Specifying color by Hexadecimal Code will be covered later. Inserting Line breaks into your text Use the <br /> tag to start a new line of text <td>Type some text <br />HTML is written in the form of labels <br /> (known as tags or elements), <br /> surrounded by angle brackets. </td> The <br /> tag can be used for spacing in your web page, add three break tags after your last word of text. Note: There is no closing tag as forward slash is included in break tag. Your notepad index.html document should look similar to this (See figure 4) Figure 4 Save your updated web page: In your notepad index.html document click file in top menu bar and click save. View your web page: In windows explorer (My Computer) navigate to your my_first_webpage folder and double left click your index.html file to view your updated web page. Your web page should look similar to this (See figure 5) Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 4 of 8
  • 5. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au Gap Figure 5 You may notice the size of the columns changing after you inserted breaks into your text to avoid this specify the width of the first column. <td width=”700”><h1><font color=”white”>Fred’s Home Page</font></h1></td> To eliminate the gap on top of your webpage insert a top margin into the body tag. <body background=” tilebgWaterAqua.jpg” topmargin=”0”> To center your images in their columns wrap a center tag around your image tag. <td><center><img src=”image_file_name.jpg” /></center></td> Save your updated web page: In your notepad index.html document click file in top menu bar and click save. Step 5 Hyperlinks to other web sites To link your web page to other web sites use the following code and insert after your last three line breaks in the text column: <td>Your Text<br /><br /><br /> <a href=http://www.google.com.au target=”blank” >Google Link</a></td> Clicking the text Google Link in your web page will open the Google Home page in your browser. Insert target=”blank” if you like Google to open up in its own browser window. By default links are shown in colors and are underlined. Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 5 of 8
  • 6. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au Links to E-mail addresses If you like to be contacted through your e-mail address include the code below. After the Google link type two <br /> tags than <a href=http://www.google.com.au target=”blank” >Google Link</a><br /><br /> <a href=”mailto:username@yahoo.com.au”>Contact me</a></td> Use your own e-mail address. Clicking Contact me will open e-mail software like Outlook Express with your e-mail address inserted. Save your updated web page: In your notepad index.html document click file in top menu bar and click save. Your notepad index.html document should look similar to this (See figure 6) Figure 6 Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 6 of 8
  • 7. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au View your web page: Trouble Shooting: Most errors are caused by spelling mistakes and added or missing spaces in HTML tags. Check for missing inverted comas and closing tags. The third part of this tutorial explains: How to create another web page and link it to your homepage. (The start of a little web site) Specifying color by Hexadecimal Code How to use your own images List of useful html tags and more Have fun with your web page and experiment with different images, backgrounds and colors. Other tutorials available from www.allcreativedesigns.com.au You might have to type or copy and paste this address into your browser if viewing the PDF version www.allcreativedesigns.com.au/pages/tutorialbasicp1.html HTML Web Page Tutorial using Notepad, PDF Download Page Part 1 www.allcreativedesigns.com.au/pages/tutorialbasicp3.html Free PDF HTML Tag Tutorial using Notepad, Download Page Part 3 Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 7 of 8
  • 8. Any content from this tutorial may not be redistributed or reproduced in any way, shape, or form without the written permission by Peter Krisch of allcreativedesigns.com.au www.allcreativedesigns.com.au/pages/webtutorialkompozer.html Web Design Tutorial using KompoZer, PDF Download Page www.allcreativedesigns.com.au/pages/tutorialpicasa.html Picasa Photo Editing Tutorial, Free PDF Download Page www.allcreativedesigns.com.au/pages/tutorialseo.html SEO Tutorial Basic Search Engine Optimization PDF Download Page Copyright © 2007 - 2010 Basic HTML Tutorial Part 2 by Peter Krisch 8 of 8