HTML Tags Flashcards

1
Q

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.

A

Line Break <br></br>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

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.

A

Paragraph <p>, </p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The __________ tag defines a description list. The definition list tag is used in conjunction with definition term tag and definition description tag.

A

Definition List <dl>, </dl>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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.

A

Definition Term <dt>, </dt>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The _________ is used to describe a term/name in a description list. Inside a _________ you can put paragraphs, line breaks, images, links, list, etc.

A

Definition Description <dd>, </dd>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The __________ defines an ordered list. An ordered list can be numerical or alphabetical.

A

Ordered List <ol>, </ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

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.

A

List Item <li>, </li>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The _________however defines an unordered or bulleted list. The _________ together with <li> tag creates an unordered list.

A

Unordered List <ul>, </ul>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The __________ defines a list item. The __________ is used in ordered, unordered and menu lists.

A

List Item <li>, </li>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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.

A

Strong Text <strong>, </strong> || Boldface <b>, </b>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The __________, __________, __________, and __________ tags have the effect of making text tilt sideways, usually as a change in mood, thought, language, technical terms, etc.

A

Emphasis <em>, </em> || Definition <dfn>, </dfn> ||Variable <var>, </var> || Italicize <i>, </i>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The __________, __________ and __________ have the effect of making text use a monospaced font, used to denote computer code or technical input /output.

A

Computer Code <code>, </code> || Sample Output <samp>, </samp> || Keyboard Input <kbd>, </kbd>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The __________ will highlight text.

A

Mark <mark>, </mark>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The __________ will decrease the size of text, for citations, notes and the like.

A

Small <small>, </small>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The __________ will change text into subscript while the __________ will
change text to superscript.

A

Subscript , || Superscript ,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

__________ allow you to create an input field where user can enter data.

A

<input></input> tags

17
Q

<input></input> tag can be found inside __________

A

<body> tag
</body>

18
Q

<body> tag and usually within \_\_\_\_\_\_\_\_\_\_.
</body>

A

<form> tag
</form>

19
Q

__________ denotes a clickable button.

A

Button input type=”button”

20
Q

__________ denotes a checkbox.

A

Checkbox input type=”checkbox”

21
Q

__________ denotes a file-select field and a “Browse…” button for file uploads.

A

File input type=”file”

22
Q

__________ denotes a single-line text field. When developers do not specify the type of INPUT this is the default input type. The default width is up to 20 characters)

A

Text input type=”text”

23
Q

__________ is used for entering either a single email address or a list of email addresses.

A

Email input type=”email”

24
Q

These allows you to fine-tune or control the feature of a tag.

A

ATTRIBUTES

25
Q

The HTML __________ defines a hyperlink. It has the following syntax:

<a>link text</a>
<a>Visit Google.com!</a>

A

HTML Links <a> tag</a>

26
Q

The HTML __________ is used to embed an image in a web page. Images are not technically inserted into a web page; images are linked to web pages. The __________ creates a holding space for the referenced image.

A

<img></img> tag