HTML
HTML
Introduction to HTML
4.1 INTRODUCTION
HTML (Hypertext Markup Language) is used to create document
on the World Wide Web. It is simply a collection of certain key
words called Tags that are helpful in writing the document to be
displayed using a browser on Internet.
It is a platform independent language that can be used on any
platform such as Windows, Linux, Macintosh, and so on. To
display a document in web it is essential to mark-up the different
elements (headings, paragraphs, tables, and so on) of the
document with the HTML tags. To view a mark-up document,
user has to open the document in a browser. A browser
understands and interpret the HTML tags, identifies the structure
of the document (which part are which) and makes decision about
presentation (how the parts look) of the document.
HTML also provides tags to make the document look attractive
using graphics, font size and colors. User can make a link to the
other document or the different section of the same document
by creating Hypertext Links also known as Hyperlinks.
4.2 OBJECTIVES
After going through this lesson, you would be able to :
<HTML>.............</HTML>
<HEAD>.............</HEAD>
<BODY>.............</BODY>
Starting
Tag
The <HTML> tag encloses all other HTML tags and associated text
within your document. It is an optional tag. You can create an
HTML document that omits these tags, and your browser can still
read it and display it. But it is always a good form to include the
start and stop tags.
The format is:
<HTML>
Your Title and Document (contains text with HTML tags) goes here
</HTML>
Most HTML tags have two parts, an opening tag and closing tag.
The closing tag is the same as the opening tag, except for the slash
Introduction to HTML:: 73
mark e.g </HTML>. The slash mark is always used in closing tags.
An HTML document has two distinct parts HEAD and BODY.
The Format is:
<HTML>
<HEAD>
.............
.............
.............
</HEAD>
<BODY>
.............
.............
.............
Closing
Opening
</BODY>
Tag Tag
</HTML>
l
HEAD tag comes after the HTML start tag. It contains TITLE tag
to give the document a title that displays on the browsers title bar
at the top.
The Format is:
<HEAD>
<TITLE>
Your title goes here
</TITLE>
</HEAD>
The BODY tag contains all the text and graphics of the document
with all the HTML tags that are used for control and formatting
of the page.
The Format is:
<BODY>
Your Document goes here
</BODY>
An HTML document, web page can be created using a text editor,
Notepad or WordPad. All the HTML documents should have the
extension .htm or .html. It require a web browser like Internet
Explorer or Netscape Navigator/Communicator to view the
document.
Example: It is my first web page
Follow the steps to create and view in browser:
Step-1:
Step-2:
<HTML>
<HEAD>
<TITLE>
My first Page
</TITLE>
</HEAD>
<BODY>
WELCOME TO MY FIRST WEB PAGE
</BODY>
</HTML>
Introduction to HTML:: 75
Step-3: Save the file as myfirstpage.html (go to File-Save Asgive File name: myfirstpage.html-choose save as type:
All Files-click save)
Step-4: Viewing document in web browser (open Internet
Explorer-click on File-Open-Browse-select the file
myfirstpage.html-click open-click ok)
Introduction to HTML:: 77
<HTML>
<HEAD>
<TITLE>
Use of Attributes with the Body Tag
</TITLE>
</HEAD>
<BODYBACKGROUND="computer.gif" text="blue"
TOPMARGIN ="75"
LEFTMARGIN="75">
Your document text will be indented 75 pixels from the
left hand and 75 pixels from the top of the page. The
background image computer.gif will be tiled across the
document. Your image and HMTL document should
present at the same place.
</BODY>
</HTML>
Introduction to HTML:: 79
Example:
<TAG> this is a container tag. It holds both the text and
HTML tag </TAG>
2.
INTEXT QUESTION
1.
(b)
(c)
(d)
Introduction to HTML:: 81
Introduction to HTML:: 83
Fig. 4.5
Introduction to HTML:: 85
Subscript
Superscript
Introduction to HTML:: 87
Entity
©, ®
, ,
, <, >, ,
&
&
Introduction to HTML:: 89
Output:
Description
Type = A
Type = a
Type = I
Type = i
Type = 1
eg. 1, 2, 3.
Introduction to HTML:: 91
START: used for lists that need to start at values other than
1. START always specified in default numbers, and is
completed based on TYPE before display, For example, If
START =5 it would display either an E, e, V, v, or 5
based an TYPE attribute.
Nested Order List
One ordered list might contain one or more ordered list that is
called as Nested Order lists.
Example: An HTML document nested.html shows the use of Nested
Order Lists with attributes.
<HTML>
<HEAD>
<TITLE> Use of Nested Ordered Lists</TITLE>
</HEAD>
<BODY>
<OL TYPE = A START =3>
<LI> Fruits
<OL TYPE = I>
<LI> Apple
<LI> MANGO
<LI> Orange
</OL>
<LI> VEGETABLES
<OL TYPE = I>
<LI> Brinjal
<LI> Cabbage
<LI> Tomato
</OL>
</OL>
</BODY>
</HTML>
Introduction to HTML:: 93
<LI> Apple
<LI> Mango
<LI> Orange
</UL>
<LI> VEGETABLE
<UL>
<LI> Brinjal
<LI> Cabbage
<LI> Tomato
</UL>
</UL>
</BODY>
</HTML>
The unordered list also used the attributes COMPACT and TYPE
= CIRCLE or DISC (filled Circle used as a bullet)
INTEXT QUESTION
2.
(b)
(c)
(d)
(e)
Introduction to HTML:: 95
If the location of the image and web page are in the same place
in the same directory/path then it is simply written <IMG
SRC=NOSlogo.GIF>
This SRC attribute is mandatory for the <IMG> tag.
Other attributes used with <IMG> are: q
ALIGN
ALT
BORDER
ALIGN = TOP - Aligns the text with the top of the image
<HTML>
<HEAD>
<TITLE> Use of IMG Tag With its ALIGN Attribute</TITLE>
</HEAD>
<BODY>
<P>
<IMG SRC=NOSlogo.GIF ALIGN=TOP>
Aligns the text with the Top of the image
</P>
<P>
<IMG SRC=NOSlogo.GIF ALIGN=MIDDLE>
Aligns the text with the Middle of the image
</P>
<P>
<IMG SRC=NOSlogo.GIF ALIGN=LEFT>
Displays image on left side and the subsequent text flows
around the right hand side of that image. Displays image
on left side and the subsequent text flows around the
right hand side of that image. Displays image on left side
and the subsequent text flows around the right hand side
of that image.
</P>
<P>
<IMG SRC=NOSlogo.GIF ALIGN=RIGHT>
Displays image on right side and the subsequent text flows
around the left hand side of that image. Displays image
on right side and the subsequent text flows around the left
hand side of that image.
</P>
</BODY>
</HTML>
Introduction to HTML:: 97
BORDER
Border around the image can be controlled by using BORDER
attribute of <IMG> tag. By default image displays with a thin
border. To change the thickness or turn the border off, the value
in pixels should set to BORDER attribute.
Example: <IMG SRC=NOSlogo.GIF BORDER=0>
BORDER =0 to Turn the Border off
Example: <IMG SRC=NOSlogo.GIF BORDER=3>
BORDER=3 to make the border thickness to 3
Example: Showing the use of Image Attributes
<HTML>
<HEAD>
<TITLE> Use of Image Attributes </TITLE>
</HEAD>
<BODY>
<IMG SRC=NOSLogo.GIF HSPACE=5 VSPACE=5 BORDER=5 ALT=NOSLOGO ALIGN=LEFT>
National Institute of Open Schooling. National Institute of Open Schooling.
National Institute of Open Schooling. National Institute of Open Schooling.
National Institute of Open Schooling. National Institute of Open Schooling
</BODY>
</HTML>
Introduction to HTML:: 99
Opening
Address of the document
Anchor Tag
Link text
Example:
<A HREF ="http://www.nios.ac.in"><IMG SRC=NOSlogo.GIF
BORDER=3></A>
This link text jumps to the section named with HREF on click.
The # symbol before the section name is must.
2.
<HTML>
<HEAD><TITLE> Use of Anchor Tag</TITLE></HEAD>
<BODY>
<H2 align=''center''><U><FONT COLOR=''BLUE''>National Institute of Open
Schooling</FONT> </U></H2>
<A HREF=''http://www.nios.ac.in''><IMG SRC=''NOSlogo.GIF'' alt=''NIOSLOGO''
align=''left''></A>
The success of open learning and distance education very much depends on
the harnessing of the new and latest technology. The emerging Internet and
Web Technology helps in effective dissemination of information. The web site is
a demand source of latest information. One can access NIOS website by
clicking on <A
HREF="http://www.nios.ac.in" >http://www.nios.ac.in</A> OR on Clicking
NIOS logo <p></p><p></p><p></p><p></p>
<p><b><i><u>Internet and Web Technology</u></i></b></p>
<p><FONT COLOR="BLUE">Various Terms used in Internet are:</FONT>
<br>
INTEXT QUESTION
3.
(b)
(c)
(d)
2.
3.
4.
5.
2.
3.
(a)
True
(b)
True
(c)
False
(d)
True
(a)
True
(b)
False
(c)
True
(d)
False
(e)
True
(a)
allows
(b)
Hypertext
(c)
<IMG>
(d)
BORDER