and answers 100% correct 2025
What is a characteristic of a web page with responsive design?
The ability to react to user events
A measure of the page load speed
The ability to resize to the screen size
A measure of the page close speed - correct answer The ability to resize to
the screen size
Which programming language provides dynamic content for a web page
across all browsers?
XML
JavaScript
HTML5
Java - correct answer JavaScript
Which type of content should use an <aside>?
News Feeds
Site copyrights
Headlines
Navigation Menus - correct answer News Feeds
,Which element should a developer use for a bulleted list?
<ul>
<ol>
<li>
<p> - correct answer <ul>
What does an HTML5 code validator conform about code?
It contains no warnings.
It works in every browser.
It complies with a standard.
It follows best practices. - correct answer It complies with a standard.
A web developer needs to play an audio le endlessly. The developer writes
the following HTML code:
<audio>
<Source src "media/audio.ogg" type "audio/ogg" />
<audio>
Which attribute should this developer use?
Controls
autoplay
loop
, src - correct answer loop
Which attribute is used to display an image inside a element before the video
starts playing?
src
img
type
poster - correct answer Poster
Which style sheet code denes the 18-pixel Arial font for all level two headers?
h2 {font-family-: Arial; font-weight: 18px; }
.h2 {font-name: Arial; font-size: 18px; }
h2 {font-family: Arial; font-size: 18px; }
.h2 {font-name: Arial; font-weight:18px; } - correct answer h2 {font-family:
Arial; font-size: 18px; }
Given the following CSS code:
body {
color : white;
}
Which part of an element is affected by the color property?
Text