NEW
Font size
WorksheetsHTML Quiz Grade 6
Total questions: 10
Worksheet time: 5mins
What does HTML stand for?
Hyper Transfer Markup Language
High Tech Markup Language
HyperText Markup Language
Hyperlink Text Management Language
What does the <title> tag inside the <head> section do?
Displays the page title in the browser tab
Sets the background color of the webpage
Creates a heading on the webpage
Links an external stylesheet
What does the <head> tag contain?
The main content of the webpage
Images and videos
Important information like the title and metadata
All visible text and links
Which tag is used to create paragraphs in HTML?
Para
PAragraph
<p>
<text>
What does the <a> tag do in HTML?
Creates a paragraph
Inserts an image
Creates a hyperlink to another webpage
Adds a line break
Which attribute is used inside the tag to specify the link's destination?
src
href
alt
link
What is the function of the <body> tag in an HTML document?
It contains all visible content like text, images, and links
It provides metadata for the webpage
It defines the title of the webpage
It links an external CSS file
Which tag is used to create a line break in HTML?
<lb>
<br>
<hr>
<break>
What will the following code do?
<a href="https://www.google.com">Go to Google</a>
Create a paragraph with "Go to Google" text
Display an image linked to Google
Create a clickable link to Google
Insert a title for the webpage
What will the following HTML code display?
<p>Welcome to my website!<br>Enjoy your stay.</p>
"Welcome to my website! Enjoy your stay." (on the same line)
"Welcome to my website!" (on one line) and "Enjoy your stay." (on the next line)
"Welcome to my website!<br>Enjoy your stay." (as written in the code)
"Welcome to my website! <new line> Enjoy your stay."
