D276 Tags and Terms Flashcards

1
Q

<p>
</p>

A

Paragraph, must have closing tag

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

<br></br>

A

Creates a line break

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

<section>
</section>

A

Collection of related content, must have closing tag

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

<h1>
</h1>

A

Heading bold and separates text

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

<cite></cite>

A

Denotes a title and italicized by default

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

<mark></mark>

A

Highlights enclosed text

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

<strong></strong>

A

Important text, bold by default

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

<b></b>

A

Text needs attention, bold by default

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

<i></i>

A

Text in an alternate voice; italicized by default

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

<u></u>

A

Underlines text

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

<em></em>

A

Emphasized text; italics

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

<var></var>

A

Definition of computer variable

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

<kbd></kbd>

A

Keyboard input

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

<samp></samp>

A

Sample text

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

<code></code>

A

Computer code

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

<–!–>

A

Comment on code; doesn’t appear

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

<ul>
</ul>

A

Unorganized list

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

<li>
</li>

A

list item

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

<ol>
</ol>

A

Organized list default 1,2,3…

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

<table>
</table>

A

Creates a table

21
Q

<tr>
</tr>

A

Creates a table row

22
Q

<th>
</th>

A

Creates a table header; default bold

23
Q

<td>
</td>

A

Creates table data

24
Q

<img></img>

A

Creates an image tag

25
Q

src

A

place for putting the link to an image

26
Q

alt

A

What to display in the event of a broken image

27
Q

JPEG

A

For digital photos

28
Q

PNG

A

line art, screenshots or images that must be transparent

29
Q

GIF

A

Animated images

30
Q

<a></a>

A

Anchor tag defines a hyperlink

31
Q

../

A

One directory above the current hyperlink page

32
Q

<span></span>

A

Generic element to manage parts of the page

33
Q

<form>
</form>

A

Allows the user to submit info to server

34
Q

XML

A

Markup language for transferring and displaying data

35
Q

Is case sensitive

A

XML

36
Q

Requires definition of terms

A

XML

37
Q

Allows errors

A

HTML

38
Q

Has unlimited tags

A

XML

39
Q

Element selector

A

Tag by itself “p”

40
Q

Class selector

A

Period in front “.notice”

41
Q

Id selector

A

Hashtag in front “#byline”

42
Q

Psuedo-class selector

A

Colon in front “:hover”

43
Q

Descendant

A

Places one tag after another “p span”

44
Q

Universal selector

A

Asterisk (*)

45
Q

Multiple selector

A

Seperated by comma (ol, ul)

46
Q

Child selector

A

Greater than (ol>ul)

47
Q

Sibling selector

A

Tilde(~)

48
Q

<div>
</div>

A

Defines a section of the document