Font size
WorksheetsHTML & CSS Certification Review
Total questions: 16
Worksheet time: 16mins
Ishaan is learning web development and wants to know which of the following is an opening HTML tag?
</html>
<<html>>
<html>
<html/>
Leo is learning HTML and wants to close an HTML document. Which one of the following tags should he use?
<html />
</html>
<</html>>
<html>
Muhammad is creating a website for his school project and wants to add a picture of his school. Which tag should he use to add the image?
<image>
<img>
<<img>>
</image>
Scarlett is designing a website and wants to style a specific element with the id 'header'. What symbol should she use to target the id 'header' in her CSS file?
.
+
id
#
Emily is designing a website for her school project and wants to change the background color using CSS. Which of the following syntax is correct to achieve this?
background-color: purple;
background-color = "purple";
backgroundcolor=orange
change-background-color: purple
James is creating a website and wants to style it. Should he use HTML to style the web pages?
True
False
Anaya is designing a website for her school project. She wants to style the web pages. Which of the following statements is true regarding this?
CSS can be used to style web pages
CSS cannot be used to style web pages
Grace is learning HTML and she wrote the following HTML skeleton:
<!DOCTYPE html>
<html>
<body>
</body>
</html>
What is missing from Grace's HTML skeleton?
<head></head>
<div></div>
<img></img>
<head>
Emily is designing a website and wants to change the font color of a paragraph to green using CSS. Which of the following code snippets should she use?
font-color: green;
color: green;
change-font-color: green;
fontcolor=green;
Emily is learning HTML and she came across a statement: 'All HTML tags require a closing tag.' Lily, who is also learning HTML, disagrees with this statement. TRUE OR FALSE: All tags require a closing tag.
True
False
Rosie is creating a website for her school project. She wants to style her website using CSS. Where should she put the link tag to connect her CSS and HTML file?
Between the <head> </head> in HTML
Between the <body> </body> in HTML
None of the above.
Neha is creating a website for her school project. Scarlett told her that HTML is used to add content to web pages. Is Scarlett's statement True or False?
True
False
What is the difference between HTML and CSS?
What is HTML used for?
What is CSS used for?
Isabelle is creating a webpage for her school project. She wants to add a new row in her table. Which HTML tag should she use?
<table> to create a table
<tr> to add a row
<td> to add a column
<th> to add a heading
