Which property should a developer use to ensure that a background image appears only once?
> ''The `background-repeat` property in CSS defines how background images are repeated. To prevent a background image from repeating, use `background-repeat: no-repeat;`.''
>
> ''The default value is `repeat`, which tiles the image both horizontally and vertically unless otherwise specified.''
* MDN Web Docs: background-repeat
* CSS Backgrounds and Borders Module
---
A. It requires a minimum of one value to apply
This question seems to be about a property or method that requires two values. Without additional context, the most common scenario that fits this description is CSS properties that define sizes or positions with two values. Examples include background-position, margin, padding, etc., where both horizontal and vertical values are needed.
MDN Web Docs on Background Position
W3C CSS Backgrounds and Borders Module Level 3
Given the following HTML code:

Which line of code should replace the first line to ensure that users can pause and restart the video?
A)

B)

C)

D)

To ensure that users can pause and restart the video, the controls attribute needs to be added to the <video> tag. This attribute provides the user with controls to play, pause, and adjust the volume of the video. The correct line of code that should replace the first line in the provided HTML to achieve this functionality is:
<video width='360' height='270' controls>
Here's the comprehensive explanation:
controls Attribute: The controls attribute is a boolean attribute. When present, it specifies that video controls should be displayed, allowing the user to control video playback, including pausing, playing, and seeking.
HTML Structure:
Original Line:
<video width='360' height='270'>
Revised Line:
<video width='360' height='270' controls>
Usage Example:
<video width='360' height='270' controls>
<source src='video.mp4' type='video/mp4'>
Your browser does not support the HTML5 video element.
</video>
In this example, adding the controls attribute provides the user with play, pause, and volume controls.
MDN Web Docs on <video>
W3C HTML5 Specification on <video>
Which language should a developer use to create a border with rounded corners on a web page using in-line markup?
Rounded corners on HTML elements are styled using CSS3 properties. Specifically, the border-radius property introduced in CSS3 allows developers to apply curved borders to elements.
'CSS3 introduced the border-radius property, which allows web developers to create rounded corners without the need for images or complex markup.'
'The syntax can be applied inline, such as:
CSS3 Official Specification -- W3C
HTML & CSS Developer Guides -- MDN
===========
A web developer need to ensure that a message appears if the user's browser does not support the audio files on a web page.
How should this designer code the audio element?
A)

B)

C)

D)

To ensure that a message appears if the user's browser does not support the audio files on a web page, the developer should use the
Correct Usage:
Fallback Content: Place the message as fallback content inside the
Example:
<source src='audio/song.mp3' type='audio/mpeg' />
No mpeg support.
Explanation of Options:
Option A: Incorrect. The alt attribute is not valid for the <source> element.
Option B: Incorrect. The alt attribute is not valid for the
Option C: Incorrect. The alt attribute is used incorrectly in the
Option D: Correct. The message 'No mpeg support.' is placed correctly as fallback content inside the
W3C HTML5 Specification - The audio element
MDN Web Docs -
Using the fallback content inside the
Moira
8 days agoFelicia
15 days agoKaitlyn
22 days agoKristeen
30 days agoChantay
1 month agoDetra
1 month agoJuan
2 months agoDoretha
2 months agoRochell
2 months agoChristiane
2 months agoGlory
3 months agoLennie
3 months agoAlana
3 months agoJerry
3 months agoTalia
4 months ago