WorksheetsHTML Structure and Headings
Total questions: 11
Worksheet time: 10mins
Where does the content visible to users go in an HTML document?
<head>
<title>
<body>
<meta>
HTML stands for...
Hyper Time Multiple Language
Hyper Text Mark-up Language
Hippo T-Rex Mascot Lemur
Hipper Text Make Language
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
Which character is used to indicate an end tag?
!
#
/
\
Which set contains all of the DEFAULT tags needed to create a webpage?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
HTML controls the _________ of a webpage.
feel
precision
structure
style
More than 90 percent of websites on the Internet are coded using HTML.
True
False
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
What is the purpose of the <head> section in an HTML document?
To display the main content of the website
To contain metadata and links to external resources
To add interactive elements to the webpage
To add headings to the webpage
