What is the correct HTML for adding a background color?
Anonymous Quiz
11%
<body bg="yellow">
72%
<body style="background-color:yellow;">
11%
<background>yellow</background>
7%
<body bg-color="yellow">
What will this code output?
Difficulty: Average🤨
Difficulty: Average🤨
const obj1 = { name: 'Alice' };
const obj2 = { name: 'Alice' };
if (obj1 === obj2) {
console.log("true");
} else {
console.log("false");
}Which CSS rule can be used to change the cursor when hovering over an element?
Anonymous Quiz
19%
hover-cursor: hand;
21%
hover: cursor;
46%
cursor: pointer;
14%
pointer: hover;
What is the correct syntax for referring to an external noscript called "xxx.js"?
Anonymous Quiz
70%
<noscript src="xxx.js"></noscript>
18%
<noscript src="xxx.js">
7%
<noscript src=""></noscript>
5%
<noscript name="xxx.js">
Who is making the Web standards?
Anonymous Quiz
34%
Google
8%
Mozilla
48%
The World Wide Web Consortium
10%
Microsoft
Find the error in the code.
Difficulty: Easy😁
Difficulty: Easy😁
number = 5
text = "Quantity: " + number
print(text)
🔥3🤔3👍2
How do you add a background color for all <h1> elements?
Anonymous Quiz
18%
h1.all {background-color:#FFFFFF;}
60%
h1 {background-color:#FFFFFF;}
6%
all.h1 {background-color:#FFFFFF;}
15%
h1 background-color:#FFFFFF;
❤🔥5🔥1