Lesson1 HTM
Lesson1 HTM
There is no need to learn the entire HTML programming language as this tutorial is
designed to provide a general understanding of the codes. In this lesson the
following basic definitions and relevant tags are discussed:
What is HTML?
What are Tags?
Explanation of Document Structure
Explanation of Document Structure Tags
What is HTML?
HTML (Hyper Text Markup Language) is the language used to write Web pages
which consists of codes (tags) embedded in the text of a document.
* Do not worry about memorizing all the tags described in these lessons. Any tags
that are required are listed in the accompanying HTML Reference Guide which can
be printed for reference purposes.
<HTML>
<HEAD>
<TITLE>This is my page Title!</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
NOTE: HTML is not case sensitive. <title> is equivalent to <TITLE> or <TiTlE>.
EXAMPLE:
<BODY BACKGROUND=
"picturename.gif">
</BODY>
EXAMPLE:
<BODY
BGCOLOR="#FFFFFF">
This page has a white
background.
</BODY>
OR
EXAMPLE:
<BODY
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
BGCOLOR="WHITE">
This page has a white
background.
</BODY>
EXAMPLE:
<BODY
LINK="#0C6249">
This page has blue
links
</BODY>
EXAMPLE:
<BODY
VLINK="#800080">
This page has purple
links after being
visited
</BODY>
EXAMPLE:
<BODY
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
ALINK="#FFB50C">
This page has yellow
active links
</BODY>
EXAMPLE:
<BODY
TEXT="#00006A">
This page has blue
text
</BODY>
<BODY BACKGROUND="spiral_ruled.gif"
BGCOLOR="#FFFFFF" TEXT="#00006A"
LINK="#005A5A" VLINK="800080"
ALINK="#FFB50C">
An excellent way to learn HTML is to view the coding used on other web pages. To
do this in either Netscape or Internet Explorer - select "View Source" from the
"View" menu. The file contents with all the HTML tags will be displayed in a new
window.
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Try it out!
In the Box below, type the following HTML code, then click the "View" button. The
HTML document you made will be displayed in a new browser window. You may
wish to experiment by changing the words within the tags.
<HTML>
<HEAD>
<TITLE>My first Web page</TITLE>
</HEAD>
</HTML>
`Ìi`ÊÜÌ ÊÌ iÊ`iÊÛiÀÃÊvÊ
vÝÊ*ÀÊ* Ê `ÌÀÊ
View Erase
/ÊÀiÛiÊÌ ÃÊÌVi]ÊÛÃÌ\Ê
ÜÜܰVi°VÉÕV° Ì
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com