Com 7
Com 7
Unordered----<ul> tag
Ordered List <OL> Tag: Ordered list is used when the items have
a specific order. The list is enclosed within <ol> and </ol> tags.The list
item tag, <li>, precedes the individual items in the list.The default
numbering style is 1, 2, 3, 4, and so on.
Tags Description
< dl > Description list: It marks the beginning and end of
the list. It is a container tag.
< dt > Description term: It marks the definition term. It is
an empty tag.
< dd > Description definition: It marks the description of
the definition. It is an empty tag.
Nested List: A list within another list is called a nested list. Order and
unordered lists can be nested within each other. It forms a multilevel
list.
Inserting Images:
Inserting images will enhance the look of the webpage. It will add more
meaning to it. The text will have visual meaning added to it. HTML
allows us to insert the following image formats:
Internal link: A link that connects to another section on the same page.
Attributes Description
link It specifies the color of the link that is not clicked even once.
The default color of the link attribute is blue.
v link Visited link is the color of the link that has been clicked. By
default, the color of the link is purple.
a link Active link is the color when we have the mouse over that
link. The default color is red.
To change the color of the link, change the value of the attribute.
<body link = “orange” v link = “blue” a link = “green” >
Anchor < A > Tag: It is used to create hyperlink in a webpage. It is a
container tag, and has some important attributes.