Study online at https://quizlet.com/_hm3djy
1. What is a characteristic of a web page with responsive design?: The ability to resize
to the screen size
2. Which language provides dynamic content for a web page across all
browsers?: JavaScript
3. Which type of content should use an <aside>?: News feeds
4. Which element should a developer use for a bulleted list?: <ul>
5. What does an HTML5 code validator confirm about code?: It complies with a standard
6. A web developer needs to play an audio file endlessly.
The developer writes the following HTML code:
<audio>
<source src = "media/audio.ogg" type="audio/ogg" />
</audio>
Which attribute should this developer use?: loop
7. Which attribute is used to display an image inside a <video> element before
the video starts playing?: poster
8. Which style sheet code defines the 18-pixel Arial font for all level two head-
ers?: h2 {
font-family: Arial; font-size: 18px;
}
9. Given the following CSS code:
body {
color : white;
}
Which part of an element is affected by the color property?: Text
10. What should be added first when embedding CSS in a single web page as an
internal style sheet?: A <style> element to the <head> section
11. What is the first character a developer should use for an id selector in CSS?: #
, WGU C777 OBJECTIVE ASSESSMENT
Study online at https://quizlet.com/_hm3djy
12. A developer has an image that needs to remain in the same place when the
page is scrolled.
Which CSS positioning scheme should this developer use?: Fixed
13. A developer needs two pixels of space on the left side of content relative to
the border.
Which CSS property should this developer use?: padding-left: 2px;
14. What immediately encloses the padding in the CSS box model?: Border
15. What is the outermost box of the CSS box model?: Margin
16. Which markup positions an image so that the lower part of it is even with the
lower part of adjoining text?: <img src="sample.jpg" vertical-align="baseline">
17. Which syntax for a CSS class floats images to the right?: .floatright {
float: right; margin: 7px;
}
18. Which CSS transition should be used on an image to make it ease in when a
user's mouse hovers over that image?: transition-timing-function
19. Which CSS property should a developer use to specify the bottom of a 3D
element?: perspective-origin
20. A web designer creates the following animation by using CSS3:
#texteffect {
position: relative;
animation-name: scroll;
animation-duration: 5s;
animation-timing-function: linear;
animation-play-state: running;
}
@keyframes scroll {
from {left: 0px;}
to {left: 200px;}