City Montessori School, Gomti Nagar Extension
CT/ICT Revision Worksheet
Introduction to Web development
Class VII
Multiple Choice Questions
1. Which tag is used to create a hyperlink to another webpage?
a) <p> b) <a> c) <h1> d) <body>
2. What does HTML stand for?
a) HyperText Markup Language b) HyperText Multiple Language
c) HyperTool Markup Language d) Hyperlink Markup Language
3. Which tag is used to define the main content of an HTML document?
a) <head> b) <body> c) <img> d) <a>
True or False
4. The <br> tag is a paired tag and requires a closing tag.
5. All HTML documents must start with the <!DOCTYPE html> declaration.
6. HTML is a programming language used to create logic and functionality on a
webpage.
Fill in the Blanks
7. The <h1> to <h6> tags are used to define different levels of _______.
8. The src attribute of the <img> tag specifies the _______ of the image to be
displayed.
9. To display an image on a webpage, you use the _______ tag.
Conceptual and Understanding Questions
10.Explain the purpose of the <head> section in an HTML document. What kind
of information is placed inside it?
11.What is the difference between an empty tag and a paired tag in HTML?
Give one example of each.
12.Why is it important to use different heading tags (like <h1>, <h2>, etc.)
instead of just making the text bold?
Logical and Programming Questions
Predict the Output:
What will a web browser display for the following HTML code?
<h1>My First Page</h1>
<p>This is a paragraph.</p>
<a href="[Link]
13. Error Identification:
A student wants to display an image on their webpage, but the code is not working.
Identify the error and rewrite the code to fix it.
<image url="my_picture.jpg">
14. Write the Code: Write the complete HTML code for a simple webpage that
includes:
○ A main heading that says "My Favorite Hobbies".
○ A paragraph that describes one of your hobbies.
○ An image of a ball.
○ A link to a website about sports.