html links tag & list tags

Post on 18-Dec-2014

1.923 Views

Category:

Documents

4 Downloads

Preview:

Click to see full reader

DESCRIPTION

A full Details of Links and list tag of HTML with cross Platform Compability details.

TRANSCRIPT

Prepared By Gusani Mayank

HTML 4.01 Links Tag Reference

HTML <a> TagThe <a> tag defines an anchor. An anchor can be

used in two ways:To create a link to another document, by using the

href attributeTo create a bookmark inside a document, by using

the name attributeThe a element is usually referred to as a link or a

hyperlink.The most important attribute of the a element is the

href attribute, which indicates the link’s destination.By default, links will appear as follows in all browsers:An unvisited link is underlined and blueA visited link is underlined and purpleAn active link is underlined and red

Optional Attributes

Standard Attributes

HTML <link> TagThe <link> tag defines the relationship

between a document and an external resource.

The <link> tag is most used to link to style sheets.

The link element must be embedded in the head section, and it can appear any number of times.

Optional Attributes

Continue ..

Standard Attributes

HTML 4.01 Lists Tag Reference

HTML 4.01 Lists Tag Reference

HTML <ul> TagThe <ul> tag defines an unordered list (a bulleted list).

Use CSS to define the type of list.

Optional Attributes

Standard Attributes

HTML <ol> TagThe <ol> tag is used to create an ordered list.The list can be numerical or alphabetical.Use CSS to define the type of list.

Optional Attributes

Standard Attributes

HTML <li> TagThe <li> tag defines a list item.The <li> tag is used in both ordered (<ol>) and

unordered (<ul>) lists.Use CSS to define the type of list and list item.

Standard Attributes

HTML <dl> TagThe <dl> tag defines a definition list.The <dl> tag is used in conjunction with

<dt> (defines the item in the list) and <dd> (describes the item in the list).

HTML <dt> TagThe <dt> tag defines an item in a definition list.The <dt> tag is used in conjunction with <dl>

(defines the definition list) and <dd> (describes the item in the list).

HTML <dd> TagThe <dd> tag is used to describe an item in a

definition list.

The <dd> tag is used in conjunction with <dl> (defines the definition list) and <dt> (defines the item in the list).

Inside a <dd> tag you can put paragraphs, line breaks, images, links, lists, etc.

Standard Attributes

End Of HTML Tour

top related