NEW
Font size
Worksheetshtml-1
Total questions: 16
Worksheet time: 8mins
What does HTML stand for?
Hyper Text Markup Language
High Tech Modern Language
Home Tool Markup Language
Hyperlinks and Text Markup Language
Which tag is used to create the largest heading in HTML?
<head>
<h6>
<heading>
<h1>
What is the correct HTML tag for inserting a line break
<break>
<lb>
<br>
<newline>
Which HTML element is used to define important text (typically displayed as bold)?
<em>
<important>
<b>
<strong>
What is the correct HTML for creating a hyperlink?
<a url="http://example.com">Link</a>
<a href="http://example.com">Link</a>
<link href="http://example.com">Link</link>
Which character is used to indicate an end tag in HTML?
*
/
\
<
What does the <footer> element represent?
The bottom part of a shoe
A footer for a document or section
A note at the bottom of a page
The last paragraph on a page
How many <h1> tags should you use on a single HTML page?
As many as needed
Exactly one
At least two
Zero
HTML tags are case-sensitive (e.g., <P> is different from <p>). True or False?
True
False
All HTML elements require both an opening tag and a closing tag. True or False?
True
False
The <em> tag is used to emphasize text and typically displays as italic. True or False?
True
False
What is the correct HTML5 DOCTYPE declaration?
<DOCTYPE html>
<!DOCTYPE HTML5>
<!DOCTYPE html>
<html><!DOCTYPE>
Which of the following is the correct structure for a basic HTML document?
<html>
<body>
<head></head>
</body>
</html>
<!DOCTYPE html>
<html>
<head></head>
<body></body>
</html>
<head>
<html>
<body></body>
</html>
</head>
<DOCTYPE>
<body>
<html></html>
</body>
What is the HTML entity for a non-breaking space?
&space;
&nospace;
&sp;
Which tag is used to create a horizontal line in HTML?
<line>
<hr>
<horizontal>
<hl>
What is the difference between <strong> and <b> tags?
<strong> indicates semantic importance, while <b> is only for visual styling
They are exactly the same
<b> is semantic, <strong> is only visual
<strong> is deprecated, use <b> instead
