HTML Tags Flashcards
It means that it inserts a single line break. The line break tag is also an empty tag which means that it has no end tag. Line break tag is useful in writing addresses or poems.
Line Break <br></br>
It defines a paragraph. Browsers automatically add some space or margin before and after each __________. The margins can be modified with CSS or Cascading Style Sheet.
Paragraph <p>, </p>
The __________ tag defines a description list. The definition list tag is used in conjunction with definition term tag and definition description tag.
Definition List <dl>, </dl>
The __________ tag defines a term/name in a description list. The definition term tag is used in conjunction with definition list tag and definition description.
Definition Term <dt>, </dt>
The _________ is used to describe a term/name in a description list. Inside a _________ you can put paragraphs, line breaks, images, links, list, etc.
Definition Description <dd>, </dd>
The __________ defines an ordered list. An ordered list can be numerical or alphabetical.
Ordered List <ol>, </ol>
You need to use the __________ to define list items. It has the following attributes: start - defines the starting number in the list. It can be any number. type - defines the kind of sequencing for the list. Possible values are 1, A, a, I, i.
List Item <li>, </li>
The _________however defines an unordered or bulleted list. The _________ together with <li> tag creates an unordered list.
Unordered List <ul>, </ul>
The __________ defines a list item. The __________ is used in ordered, unordered and menu lists.
List Item <li>, </li>
The __________ and __________ have the effect of making text thicker or bolder. In general, Strong is used for important text. The boldface tag has been suggested by W3C as a kind of last-resort. W3C by the way is the standardization body of HTML.
Strong Text <strong>, </strong> || Boldface <b>, </b>
The __________, __________, __________, and __________ tags have the effect of making text tilt sideways, usually as a change in mood, thought, language, technical terms, etc.
Emphasis <em>, </em> || Definition <dfn>, </dfn> ||Variable <var>, </var> || Italicize <i>, </i>
The __________, __________ and __________ have the effect of making text use a monospaced font, used to denote computer code or technical input /output.
Computer Code <code>, </code> || Sample Output <samp>, </samp> || Keyboard Input <kbd>, </kbd>
The __________ will highlight text.
Mark <mark>, </mark>
The __________ will decrease the size of text, for citations, notes and the like.
Small <small>, </small>
The __________ will change text into subscript while the __________ will
change text to superscript.
Subscript , || Superscript ,