Welcome to the Quiz Game!
Please enter your name and surname to start the game:
Start Game
Score:
0
0
1.What does HTML stand for?
Hyperlinks and text markup language
Home tool markup language
Hyper text markup language
Cascading style sheets
2.What is the purpose of the "< head >" element in HTML?
It defines the main content of the document.
It contains metadata about the document.
It represents a header for a section.
It defines a navigation link.
3.What does CSS stand for?
Computer Style Sheets
Creative Style Sheets
Cascading Style Sheets.
Colorful Style Sheets
4.What does the margin property in CSS control?
The space between elements borders
The padding inside an element
The width of an element.
The color of the text
5.How do you add a click event listener to an HTML button with the id "myButton" in JavaScript?
document.getElementById("myButton").addEventListener("click", myFunction);
button.addEventListener("click", myFunction);
myButton.onClick = myFunction;
onClick("myButton", myFunction);
Next