Wired Up Quiz
7 questions on HTML, CSS & JavaScript.
Right then — here's the quiz…
Q1 of 7HTMLQuick fact
Which tag makes a big heading?
Q2 of 7HTMLSpot the bug 🐛
This button won't run its function. What's wrong?
<button onclick="start">Go!</button>
Question 3 of 7
Q3 of 7CSSQuick fact
Which property changes the colour of text?
Q4 of 7CSSSpot the bug 🐛
This CSS does nothing. Why?
title {
color: red;
}
Q5 of 7JSQuick fact
How do you grab the element with id="score"?
Q6 of 7JSWhat would this do? 🤔
You click the button 3 times. What shows?
let score = 0;
function addPoint() {
let score = 0;
score = score + 1;
}
Q7 of 7Wildcard 🎉Just for fun
HTML, CSS and JavaScript are all ____ together.
You scored
0 / 7