NEW
Font size
WorksheetsUnit 1:Web page ELement-Grade VII Test 2
Total questions: 10
Worksheet time: 3mins
What does HTML stand for?
HyperText Markup Language
HomeTool Markup Language
Hyperlinks and Text Markup Language
Hyper Transfer Markup Language
Which of the following is the correct way to save an HTML file?
file.html
file.txt
file.doc
file.jpg
What is the purpose of a "tag" in HTML?
To add color to the text
To create a link
To define the structure of the content
To run a program
What tag is used to create a paragraph in HTML?
<head>
<h1>
<body>
<p>
Which tag is used to define the main content of an HTML page, visible to the user?
<head>
<paragraph>
<html>
<body>
Which of the following is called a root tag?
/!DOCTYPE html>
<html>
<body>
<head>
Which HTML heading tag represents the smallest size?
<h1>
<h2>
<h3>
<h6>
How do you add comments in HTML code that won’t be displayed on the webpage?
// This is a comment
/* This is a comment */
<!-- This is a comment -->
# This is a comment
Which of the following is the correct structure of an HTML document?
<html><head></head><body></body></html>
<html><body></body><head></head></html>
<head><body></body><html></html>
<body><html></html><head></head>
What is the primary purpose of the <title> tag in an HTML document?
To set the main heading of the page
To provide a title for the webpage that appears in the browser tab
To display a title on the page
To include a description of the page content
