HTML Flashcards

1
Q

<title>
</title>

A

Title for HTML page, shows in title bar or pages tab

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

<body>
</body>

A

The body of the page

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

<h1>
</h1>

A

Top header goes up to h6

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

<p>
</p>

A

creates a new paragraph

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

<img></img>

A

used to add images

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

src

A

gets the image from the specified location

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

alt

A

provides alternate text if image does not load

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

<br></br>

A

line break, doesn’t need to be closed

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

Title for HTML page, shows in title bar or pages tab

A

<title>
</title>

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

The body of the page

A

<body>
</body>

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

header

A

<h1> - <h6>
</h6></h1>

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

paragraph

A

<p>
</p>

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

display image

A

<img></img>

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

get image location

A

src

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

line break

A

<br></br>, doesn’t need to be closed

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

br style=”line-height:N;”

A

line break N times

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

multiple line breaks

A

<br></br>

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

<a></a>

A

defines hyperlink

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

define hyperlink

A

<a></a>

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

href

A

specifies URL for the link

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

specify URL for a link

A

href

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

style

A

adds an element, such as color, font, size, and more

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

<p>
</p>

A

make everything in this paragraph X color

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

adds an element, such as color, font, size, and more

A

style

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

make everything in this paragraph X color

A

<p>
</p>

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

lang

A

defines the language of the text en-US for USA english

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

title

A

when moused over displays this text

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

defines the language of the text

A

lang, en-US for USA english

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

when moused over displays this text

A

title

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

“font-size:Xpx;”

A

sets font size X for that tag

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

set font size for a tag

A

“font-size:Xpx;”

32
Q

“background-color:X;”

A

change background color to X

33
Q

change background color

A

“background-color:X;”

34
Q

“font-family:X;”

A

changes font to X

35
Q

changes font

A

“font-family;”

36
Q

“text-align:X;”

A

aligns text to X

37
Q

aligns text

A

“text-align:X;”

38
Q

<hr></hr>

A

thematic break, displays usually as a horizontal line

39
Q

thematic break, displays usually as a horizontal line

A

<hr></hr>

40
Q

<pre>
</pre>

A

displays the font as it is typed in the code

41
Q

displays the font as it is typed in the code

A

<pre>
</pre>

42
Q

<b></b>

A

bold text

43
Q

bold text

A

<b></b>

44
Q

<strong></strong>

A

bold and marked important

45
Q

bold and marked important

A

<strong></strong>

46
Q

<i></i>

A

italics

47
Q

italics

A

<i></i>

48
Q

<em></em>

A

italics, and emphasizes. Screen readers stress this

49
Q

italics, and emphasizes. Screen readers stress this

A

<em></em>

50
Q

<small></small>

A

makes text smaller

51
Q

make text smaller

A

<small></small>

52
Q

<mark></mark>

A

highlight

53
Q

highlight

A

<mark></mark>

54
Q

<del></del>

A

puts a line through, marks text as recently removed

55
Q

puts a line through, marks text as recently removed

A

<del></del>

56
Q

<ins></ins>

A

shows text was added

57
Q

show text was added

A

<ins></ins>

58
Q

A

moves half character down

59
Q

move half character down

A

60
Q

A

move half character up

61
Q

move half character up

A

62
Q

<blockquote>
</blockquote>

A

defines a quote from another source

63
Q

defines a quote from another source

A

<blockquote>
</blockquote>

64
Q

<q></q>

A

surround with quotation marks

65
Q

surround with quotation marks

A

<q></q>

66
Q

<abbr></abbr>

A

shows full title when moused over, for search engines

67
Q

shows full title when moused over, for search engines

A

<abbr></abbr>

68
Q

<address>
</address>

A

defines contact info, usually italic, line break before and after

69
Q

defines contact info, usually italic, line break before and after

A

<address>
</address>

70
Q

<cite></cite>

A

usually italic, used for titles of creative works

71
Q

usually italic, used for titles of creative works

A

<cite></cite>

72
Q

<bdo></bdo>

A

bi directional override, overrides current text direction

73
Q

override current text direction

A

<bdo></bdo>

74
Q

<bdo></bdo>

A

text right to left, backwards text

75
Q

text right to left, backwards text

A

<bdo></bdo>

76
Q

<!-- X-->

A

comment

77
Q

comment

A

<!--X-->