To Score A+
1. The ability to re- What is a characteristic of a web page with responsive design?
size to the screen
size
2. JavaScript Which language provides dynamic content for a web page across all browsers?
3. News feeds Which type of content should use an <aside>?
4. <ul> Which element should a developer use for a bulleted list?
5. It complies with a What does an HTML5 code validator confirm about code?
standard
6. Loop 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?
7. poster Which attribute is used to display an image inside a <video> element before the
video starts playing?
8. h2 Which style rule correctly defines the 2em Arial font for all level two heading
{ font-family: elements?
Arial; font-size:
2em;}
9. Text Given the following CSS code:
1/5
, body {
color : white;
}
Which part of an element is attected by the color property?
10. A <style> element What should be added first when embedding CSS in a single web page as an
to the <head> internal style sheet?
section
11. # What is the first character a developer should use for an id selector in CSS?
12. Fixed 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?
13. padding-left:2px; A developer needs two pixels of space on the left side of content relative to the
border
Which CSS property should this developer use?
14. Border What immediately encloses the padding in the CSS box model?
15. Margin What is the outermost box of the CSS box model?
16. <img Which markup positions an image so that the lower part of it is even with the lower
src="sample.jpg" part of adjoining text?
verti-
cal-align="base-
line">
17. .floatright { Which syntax for a CSS class floats images to the right?
float: right;
2/5