Unit B Flashcards

Structuring

1
Q

A widely used reference for implementing web accessibility

A

Web Content Accessibility Guidelines (WCAG)

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

Additional code within an opening element tag that specifies information about that element. <html lang(name)=”en”(value)>

A

Attribute

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

the system user agents should employ to translate the electronic information representing the page into human-recognizable symbols, such as letters and numbers. <meta charset=”utf-8”>

A

character encoding

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

What element enables you to pass information about a web page to user agents that open it?

A

<meta charset=”utf-8”>

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

Used as a parent element (semantic) for other elements on your page that function together.

A

div element

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

Indicates the meaning of their content. For instance, the h1 element marks text as a top-level heading, and the p element marks a paragraph of text. The div element has limited meaning—it groups elements but adds no information about what type of information it contains.

A

semantic value

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

Indicates the role of content. Makes it easier for people using a search engine to find information about your business or organization.

A

semantic elements

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

The most recent version of HTML

A

HTML5

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

Used in the head section. References code in an external file that browsers can use to help them interpret the elements. src=”modernizr.custom.62074.js”>

A

script element

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

Specially formatted codes that represent characters in the HTML document character set, are used when these characters are needed on a web page. Always begin with an ampersand (&) and end with a semicolon (;). The rest of the code consists of either a pound sign (#) followed by numbers or an English language abbreviation for the associated character name.

A

Character references

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

Every character has a number code

A

numeric character reference

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

Characters with an abbreviation-based alternative

A

named character reference

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

Change the browser’s viewport using this element to instruct browsers to display a page at the width of the browser window without zooming in.

A

viewport meta element <meta></meta>

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

Version of HTML that conforms to the rules of another language known as Extensible Markup Language (XML). Requires additional code in a number of situations

A

Extensible Hypertext Markup Language (XHTML)

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