HTML Flashcards

1
Q

Which HTML tag is a container for metadata?

A

head

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

Which HTML tag is used to specify multiple media resources for media elements?

A

source

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

Which HTML structure tag defines a thematic grouping of content, typically with a heading?

A

section

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

Which HTML structure tag defines content indirectly related to the surrounding content?

A

aside

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

Which HTML structure tag defines the bottom of the web page or a section of content?

A

footer

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

Which HTML tag is used to show a video on a web page?

A

video

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

What process ensures that your code complies with standards?

A

validation

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

What is an open-source media file format designed for streaming video on the Web?

A

WebM

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

Why is it important to validate your code and correct all errors?

A

you have a better chance of your pages rendering as you expect and to a larger audience

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

What file type provides a standard format for sound files on Windows-based computers?

A

WAV

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

What file type provides a standard format for music files sent over the Internet?

A

MP3

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

Which portion of this code is the tag?

<video controls=”controls” poster=”image.png”>
Your browser does not support the video element.
</video>

A

<video></video>

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

Which portion of this code is the attribute?

<audio controls=”controls”>
Your browser does not support the video element.
</audio>

A

controls=”controls”

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

Which element is used to create a bulleted list?

A

ul

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

Which element is used to create an ordered list?

A

ol

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

Why is it important to understand what goes on behind the GUI of a Web editor?

A

You will be able to troubleshoot code issues when the GUI Web editor fails.

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

Which HTML 4.01 flavor required the separation of presentation and content?

A

HTML 4.01 Strict

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

What attribute prevents the first frame of the video from displaying while the video is downloading?

A

poster attribute

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

What can be used to create apps for mobile devices?

A

HTML5 APIs

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

True or False: HTML5 APIs use fewer resources than a proprietary browser plug-in does, such as battery power and CPU memory

21
Q

Which tag defines an unordered (bulleted) list?

22
Q

Which tag defines an ordered (numbered) list?

23
Q

Which tag defines a list item?

24
Q

What is the first tag in an HTML document that informs the browser which version of HTML the Web page is written in?

A

<!DOCTYPE>

25
What is the traditional authoring language used to develop Webpages for many applications?
HTML (Hypertext Markup Language)
26
Which language is used to describe how HTML elements are to be displayed?
CSS (Cascading Style Sheets)
27
Which language is used to create dynamic, interactive capabilities?
JavaScript
28
Which is the latest version of HTML under development by the W3C?
HTML5
29
Which version of HTML incorporates the strict syntax rules of XML with the existing set of HTML 4.01 tags to create Web documents?
XHTML
30
Which version of HTML had three distinct variants that ensured that you could use the specification and still remain backward-compatible with older Web browsers?
HTML 4.01
31
What do we call the use of HTML5, CSS, and JavaScript when used together to create web pages?
Web Development Trifecta
32
What video codec is supported by HTML5-compliant browsers, does not require a plug-in, and uses less battery and processing resources?
H.264
33
What streaming, digital multimedia format is used to store video, audio, subtitles and still images?
MPEG-4 (MP4)
34
What is an open-source audio and video format used for streaming digital multimedia?
Ogg
35
What is a web design approach to create sites that adapt to many different devices?
Responsive Web Design (RWD)
36
What does the W3C call any application, such as a Web browser or help engine, that renders HTML for display to users?
user agent
37
Which HTML tag is used to play an audio file on a web page?
\
38
Which HTML attribute specifies that the video will automatically play immediately upon loading?
autoplay="autoplay"
39
Which HTML attribute specifies that the audio or video file will play over and over again without stopping?
loop="loop"
40
Which HTML attribute specifies that the audio or video file has the ability to play, pause, rewind and adjust volume?
controls="controls"
41
Which HTML attribute identifies an image to be displayed until the play button is clicked or while a video is downloading?
poster="file.jpg"
42
What type of HTML5 tags clearly describe its meaning to both the browser and the developer?
Semantic/Structure Elements
43
Which HTML structure tag defines a container for introductory content?
header
44
Which HTML structure tag defines the main content of the document body?
main
45
Which HTML structure tag defines an area for navigation links?
nav
46
Which HTML structure tag defines independent, self-contained content that makes sense on its own?
article
47
Which tag defines the most important heading and displays it at the largest size?
h1
48
Which tag defines the least important heading and displays it at the smallest size?
h6
49
Which HTML attribute specifies the location of an external resource?
src