NEW
Font size
WorksheetsHTML QUIZ 4
Total questions: 20
Worksheet time: 20mins
Which HTML tag is used to change the background color of a webpage?
<head>
<body>
<bgcolor>
<html>
Which attribute is used to set the background color inside the <body> tag?
color
background
bgcolor
stylecolor
Which is a correct example of setting a background color?
<body color="yellow">
<body bg="yellow">
<body bgcolor="yellow">
<body style="bgcolor:yellow">
Which tag is used to insert an image in HTML?
<image>
<img>
<pic>
<src>
Which image file type is supported by HTML?
.docx
.mp3
.jpg
.pptx
Which attribute specifies the image file location?
href
src
link
path
What HTML tag is used to insert audio?
<sound>
<mp3>
<music>
<audio>
Which tag makes text move across the webpage?
<move>
<scroll>
<animate>
<marquee>
To use an image as a background, which attribute is used?
img
background
bgimage
picture
Where should the background image file be located?
any folder
desktop only
same folder as the HTML file
download folder
Which CSS property makes the background image cover the whole page?
background-repeat
background-position
background-size: cover
background-fit
Which attribute automatically plays audio or video?
play
start
autoplay
run
Which is the correct combined syntax for multiple background attributes?
<body background="img.jpg" size="cover">
<body style="background-size: cover; background-repeat: no-repeat;" background="img.jpg">
<body style="cover no-repeat">
<body img="background.jpg">
Which attribute reserves space for a video before it loads?
controls
autoplay
width and height
loop
Why is it important to specify video width and height?
To improve color quality
To reserve page layout space
To reduce file size
To improve sound quality
Which image extension is NOT supported in HTML?
.png
.gif
.html
.jpeg
What happens if the image extension name is incorrect?
page crashes
image rotates
image will not display
image become blurry
Which tag can embed external multimedia directly into a webpage?
<audio>
<video>
<embed>
<img>
Which attribute displays play, pause, and volume?
menu
controls
panel
toolbar
Which of the following is a correct audio tag example?
<audio src="song.mp3"></audio>
<audio="song.mp3">
<sound src="song.mp3">
<mp3>song.mp3</mp3>
