HTML TAGS Flashcards

1
Q

(BASIC HTML): Defines the document type.

A

< !DOCTYPE >

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

(BASIC HTML): Defines an HTML document.

A

< html >

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

(BASIC HTML): Defines information about the document.

A

< head >

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

(BASIC HTML): Defines a title for the document.

A

< title >

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

(BASIC HTML): Defines the document’s body.

A

< body >

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

(BASIC HTML): Defines HTML headings.

A

< h1 > to < h6 >

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

(BASIC HTML): Defines a paragraph.

A

< p >

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

(BASIC HTML): Inserts a single line break.

A

< br >

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

(BASIC HTML): Defines a comment.

A

< !–..– >

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

(BASIC HTML): Defines a thematic change in the content.

A

< hr >

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

(FORMATTING): Defines an acronym. [NOT IN HTML5. USE < abbr > INSTEAD.]

A

< acronym >

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

(FORMATTING): Defines contact information for the author/owner of a document/article.

A

< address >

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

(FORMATTING): Defines bold text.

A

< b >

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

(FORMATTING): Isolates a part of a text that might be formatted in a different section from the other text outside it.

A

< bdi >

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

(FORMATTING): Overrides the current text direction.

A

< bdo >

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

(FORMATTING): Defines big text. [NOT IN HTML5. USE CSS INSTEAD.]

A

< big >

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

(FORMATTING): Defines a section that is quoted from another source.

A

< blockquote >

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

(FORMATTING): Defines centred text. [NOT IN HTML5. USE CSS INSTEAD.]

A

< center >

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

(FORMATTING): Defines a title of work.

A

< cite >

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

(FORMATTING): Defines a piece of computer code.

A

< code >

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

(FORMATTING): Defines text that has been deleted from a document.

A

< del >

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

(FORMATTING): Represents the defining instance of a term.

A

< dfn >

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

(FORMATTING): Defines emphasised text.

A

< em >

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

(FORMATTING): Defines fonts, colours, and sizes for text. [NOT IN HTML5. USE CSS INSTEAD.]

A

< font >

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

(FORMATTING): Defines a part of the text in an alternate voice or mood.

A

< i >

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

(FORMATTING): Defines a text that has been inserted into a document.

A

< ins >

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

(FORMATTING): Defines keyboard input.

A

< kbd >

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

(FORMATTING): Defines mark/highlighted text.

A

< mark >

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

(FORMATTING): Defines a scalar measurement within a known range.

A

< meter >

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

(FORMATTING): Defines preformatted text.

A

< pre >

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

(FORMATTING): Represents the progress of a task.

A

< progress >

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

(FORMATTING): Defines a short quotation.

A

< q >

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

(FORMATTING): Defines what to show in browsers that don’t support ruby annotations.

A

< rp >

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

(FORMATTING): Defines an explanation/pronunciations of characters in E. Asian typography.

A

< rt >

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

(FORMATTING): Defines a ruby annotation in E. Asian typography.

A

< ruby >

36
Q

(FORMATTING): Defines a text that is no longer correct.

A

< s >

37
Q

(FORMATTING): Defines a sample output from a computer programme.

A

< samp >

38
Q

(FORMATTING): Defines a smaller text.

A

< small >

39
Q

(FORMATTING): Defines strikethrough text. [NOT IN HTML5. USE < del > OR < s > INSTEAD.]

A

< strike >

40
Q

(FORMATTING): Defines important text.

A

< strong >

41
Q

(FORMATTING): Defines subscripted text.

A

< sub >

42
Q

(FORMATTING): Defines superscripted text.

A

< sup >

43
Q

(FORMATTING): Defines a date/time.

A

< time >

44
Q

(FORMATTING): Defines a teletype text. [NOT IN HTML5. USE CSS INSTEAD.]

A

< tt >

45
Q

(FORMATTING): Defines text that should be stylistically different from normal text.

A

< u >

46
Q

(FORMATTING): Defines a variable.

A

< var >

47
Q

(FORMATTING): Defines a possible line break.

A

< ubr >

48
Q

(FORMS AND INPUT): Defines an HTML form for user input.

A

< form >

49
Q

(FORMS AND INPUT): Defines an input control.

A

< input >

50
Q

(FORMS AND INPUT): Defines a multiple line input control.

A

< textarea >

51
Q

(FORMS AND INPUT): Defines a clickable button.

A

< button >

52
Q

(FORMS AND INPUT): Defines a drop-down list.

A

< select >

53
Q

(FORMS AND INPUT): Defines a group of related options in a drop-down list.

A

< optgroup >

54
Q

(FORMS AND INPUT): Defines an option in a drop-down list.

A

< option >

55
Q

(FORMS AND INPUT): Defines a label for an < input > element.

A

< label >

56
Q

(FORMS AND INPUT): Group related elements in a form.

A

< fieldset >

57
Q

(FORMS AND INPUT): Defines a caption for a < fieldset > element.

A

< legend >

58
Q

(FORMS AND INPUT): Specifies a list of pre-defined options for input controls.

A

< datalist >

59
Q

(FORMS AND INPUT): Defines a key-pair generator field (for forms).

A

< keygen >

60
Q

(FORMS AND INPUT): Defines the result of a calculation.

A

< output >

61
Q

(FRAMES): Defines a window (a frame) in a frameset.

A

< frame >

62
Q

(FRAMES): Defines a set of frames. [NOT IN HTML5.]

A

< frameset >

63
Q

(FRAMES): Defines an alternate content for users that don’t support frames. [NOT IN HTML 5.]

A

< noframes >

64
Q

(FRAMES): Defines an inline frame.

A

< iframe >

65
Q

(IMAGES): Defines an image.

A

< img >

66
Q

(IMAGES): Defines a client-side image-map.

A

< map >

67
Q

(IMAGES): Defines an area inside an image-map.

A

< area >

68
Q

(IMAGES): Used to draw graphics, on the fly, via scripting. (ie Javascript)

A

< canvas >

69
Q

(IMAGES): Specifies self-contained content.

A

< figure >

70
Q

(IMAGES): Defines a container for multiple image resources.

A

< picture >

71
Q

(AUDIO/VIDEO): Defines sound content.

A

< audio >

72
Q

(AUDIO/VIDEO): Defines multiple media resources for media elements. (ie < video > , < audio > , < picture > )

A

< source >

73
Q

(AUDIO/VIDEO): Defines text tracks for media elements. (ie < video > and < audio > )

A

< track >

74
Q

(AUDIO/VIDEO): Defines a video or movie.

A

< video >

75
Q

(LINKS): Defines a hyperlink.

A

< a >

76
Q

(LINKS): Defines the relationship between a document and external resource (most used to link to style sheets).

A

< link >

77
Q

(LINKS): Defines navigation links.

A

< nav >

78
Q

(LISTS): Defines an unordered list.

A

< ul >

79
Q

(LISTS): Defines an ordered list.

A

< ol >

80
Q

(LISTS): Defines a list item.

A

< li >

81
Q

(LISTS): Defines a directory list. [NOT IN HTML5. USE < ul > instead.]

A

< dir >

82
Q

(LISTS): Defines a description list.

A

< dl >

83
Q

(LISTS): Defines a term/name in a description list.

A

< dt >

84
Q

(LISTS): Defines a description of a term/name in a description list.

A

< dd >

85
Q

(LISTS): Defines a list/menu of commands.

A

< menu >

86
Q

(LISTS): Defines a command/menu item that the user can invoke from the popup menu.

A

< menuitem >