HTML

 40 Minutes
 20 Questions


This test is designed to assess a person's knowledge of technology, HTML, and web development. The first section will cover basic concepts such as HTML tags, attributes, and structure. The second section will focus on more advanced topics such as styling with CSS, creating interactive elements with JavaScript, and using frameworks like Bootstrap. This test is suitable for anyone looking to demonstrate their understanding of the fundamentals of web development.


Example Question:

Multiple-Choice
What will be the output of the HTML file below (in David's laptop with IE installed)?
Assuming the following line has been executed one week ago?
localStorage.guestName = "David"
//HTML File
<!DOCTYPE html>
<html>
<body>
<div id="greeting"></div>
<script>
document.getElementById("greeting").innerHTML="Guest Name: " + localStorage.guestName;
</script>
</body>
</html>