Instruction: Arrange The Jumble Letters
Instruction: Arrange The Jumble Letters
Arrange the
Jumble
AEDNGIH
HEADING
PGPAHRARA
PARAGRAPH
EUTTIRUBAT
ATTRIBUTE
EILNERABK
LINE BREAK
MMESTONC
COMMENTS
XTASNY
SYNTAX
TROMFA
FORMAT
HEADING
PARAGRAPH
ATTRIBUTE
LINE BREAK
COMMENTS
SYNTAX
FORMAT
UNIT II:
Lesson 1:
HTML Elements
Major Parts of HTML Document,
Body Tag Attributes,
Creating HTML Documents, Heading,
Paragraph,
Line Break,Comment
Prepared By : Group III
MAJOR PARTS OF
HTML
The HTML container tag indicates that the document must should
be interpreted as HTML document.
The HEAD container tag have the important information regarding
the HTML document.
The BODY container tags have the elements to be displayed in
thebrowser.
Attribute
bgcolor
Descripti
on
Specifiesthecoloro
f the page
Format
<body
bgcolor=black>
<body
bgcolor=#000000>
background
Specifiesthe
background image
<bodybackground=im
age.jpg>
CONTD.
Attribute
Description
Format
text
Specifiesthecolorof
a normal text in the
page
<body
text=black>
link
vlink
Specifiesthecolorof
the text with visited
hyperlink in the
page
<body
vlink=yellow>
alink
Specifiesthecolorof
the text with
hyperlink when
clicked (hit state)
<body
alink=white>
HEADING
These are container tags which
format text to emphasize its contents
using default value forits size
andcolor.
Attribute
Description
Possible
Values
align
Specifiesthealignm
ent of the text
inside the heading
Left, right,
center
title
Atextthatappears
when the mouse
passes over the
heading
Any text
PARAGRAPH
Paragraphs are defined with the<p>
tag. It is equivalent to two linebreak
tags
<br><br>.
Attributes
Description
Possible
Values
align
Specifiesthe
Alignment of
the text inside
the heading
style
Assignsthe
Colors,
formatof the background,
paragraph
fonts
Left, right,
center, justify
LINE BREAK
COMMENTS
The starting tag and the closing tag for
comments are <!-and -->, respectively.
Comments are used to insert a
comment or remark tothe HTML
document. These comments willnot
bedisplayed bythe browser.