nohref Correct Ans-An attribute which specifies that an area has no associated link, [attribute]
shape Correct Ans-Attribute used to specify the shape of an area (values: default, rect, circle,
poly), [attribute]
target Correct Ans-An attribute used for specifying how a link should be opened (values:
_blank, _parent, _self, _top), [attribute]
< caption > Correct Ans-Creates a table caption (placed between the <table> and <tr> tags),
[HTML Tag]
< colgroup > Correct Ans-Used for specifying properties for a group of columns within a
table(placed between the <table> and <tr> tags), [HTML Tag]
< col > Correct Ans-Used for specifying column properties for each column within a
colgroup (placed between the <colgroup> and </colgroup> tags), [HTML Tag]
< thead > Correct Ans-Tag which defines the table head (placed before <tfoot> and <tbody>),
[HTML Tag]
< tfoot > Correct Ans-Tag which defines the table footer (placed after <thead> and BEFORE
<tbody>), [HTML Tag]
, < tbody > Correct Ans-Tag which defines the table body (placed AFTER <thead> AND
<tfoot>), [HTML Tag]
< span > Correct Ans-Tag used for grouping and applying styles to inline elements (inline as
in the inside of the element), [HTML Tag]
< div > Correct Ans-Tag used with block-level elements (can group multiple elements
together), [HTML Tag]
< ul > Correct Ans-Tag used for starting an unordered list (or un-numbered list), [HTML Tag]
< ol > Correct Ans-Tag used for starting an ordered list (numbered list), [HTML Tag]
< li > Correct Ans-Tag used for specifying a list item (nest together with <ul> and <ol> tags),
[HTML Tags]
< dl > Correct Ans-Tag used for starting a definition list (used together with <dt> and <dd>
tags), [HTML Tag]
< dt > Correct Ans-Tag which defines a term (an item) in a definition list, [HTML Tag]
< dd > Correct Ans-Tag which defines a description of a term in a definition list, [HTML Tag]