Font size
WorksheetsHTML, CSS and JavaScript
Total questions: 10
Worksheet time: 5mins
Which heading has the largest font by default?
h1
h2
h5
h6
What tag do you put JavaScript code in?
javascript
script
code
body
What is the name of the CSS selector to style the div tag?
.div
$div
#div
>div
div
What is the name of the CSS selector to style the element with id named car?
.car
$car
#car
>car
car
What CSS property changes the color of the font?
font-color
text-color
background-color
css-color
color
How do you increment the variable x by 2?
x + 2;
x = x + 2;
x = 2;
x == 2;
What function will call the loop function once after a second?
setTimeout(loop, 1);
setTimeout(loop, 1000);
setInterval(loop, 1)
setInterval(loop, 1000)
Given the id sprite, how do you get the element using JavaScript?
document.getElementByID('sprite');
document.getElementByID('#sprite');
document.getElementById('sprite');
document.getElementById('#sprite');
Given the element ele, how do you change the element's background color to black?
ele.backgroundColor('black')
ele.style.backgroundColor('black')
ele.background-color = 'black';
ele.style.backgroundColor = 'black';
What is a comment in JavaScript? Check all that apply.
// This is a comment
; This is a comment.
# This is a comment.
/* This is a comment. */
