22
Prepared By Gusani Mayank

HTML Links tag & list tags

Embed Size (px)

DESCRIPTION

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

Citation preview

Page 1: HTML Links tag & list tags

Prepared By Gusani Mayank

Page 2: HTML Links tag & list tags

HTML 4.01 Links Tag Reference

Page 3: HTML Links tag & list tags

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

Page 4: HTML Links tag & list tags

Optional Attributes

Page 5: HTML Links tag & list tags

Standard Attributes

Page 6: HTML Links tag & list tags

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.

Page 7: HTML Links tag & list tags

Optional Attributes

Page 8: HTML Links tag & list tags

Continue ..

Page 9: HTML Links tag & list tags

Standard Attributes

Page 10: HTML Links tag & list tags

HTML 4.01 Lists Tag Reference

Page 11: HTML Links tag & list tags

HTML 4.01 Lists Tag Reference

Page 12: HTML Links tag & list tags

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

Use CSS to define the type of list.

Optional Attributes

Page 13: HTML Links tag & list tags

Standard Attributes

Page 14: HTML Links tag & list tags

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

Page 15: HTML Links tag & list tags

Standard Attributes

Page 16: HTML Links tag & list tags

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.

Page 17: HTML Links tag & list tags

Standard Attributes

Page 18: HTML Links tag & list tags

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).

Page 19: HTML Links tag & list tags

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).

Page 20: HTML Links tag & list tags

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.

Page 21: HTML Links tag & list tags

Standard Attributes

Page 22: HTML Links tag & list tags

End Of HTML Tour