2026 Exam Questions and
Answers | 100% Pass
What is HTML? - ANSWER ✔✔the language you use to create a web
site
What is HTML an acronym for? - ANSWER ✔✔hypertext markup
language
What is an HTML document? - ANSWER ✔✔a file that contains your
website content and HTML formatting instructions
,What is an HTML tag? - ANSWER ✔✔specifies the formatting and
presentation of information on a web site
What are HTML tags used for? - ANSWER ✔✔to identify elements of
an HTML document
What are fundamental components of the document's structure? -
ANSWER ✔✔elements
Example of an element? - ANSWER ✔✔head, title, paragraphs, list,
tables
What do HTML tags consist of? - ANSWER ✔✔<tag name>
What do tags come in? - ANSWER ✔✔pairs
Every HTML document should contain? - ANSWER ✔✔certain
standard HTML tags
<hn> </hn> - ANSWER ✔✔heading tag, where n is replaced with
number 1-6
How many header sizes are there? - ANSWER ✔✔6
What is the largest size header? - ANSWER ✔✔1
What is smallest size header? - ANSWER ✔✔6
,<p> </p> - ANSWER ✔✔paragraph
<ul> </ul> - ANSWER ✔✔unordered list (bullets)
<ol> </ol> - ANSWER ✔✔ordered list (numbers)
<li> </li> - ANSWER ✔✔list item
<br /> - ANSWER ✔✔hard line break
<hr /> - ANSWER ✔✔horizontal rule
<a> </a> - ANSWER ✔✔anchor tag
What is the purpose of an anchor tag? - ANSWER ✔✔to link to other
documents
What replaces the file name in <a href="http://filename">Text</a> ? -
ANSWER ✔✔the path and filename of the target document
What replaces the text in <a href="http://filename">Text</a> ? -
ANSWER ✔✔the text to serve as the hyperlink in the document
How do you specify email address in href attribute? - ANSWER
✔✔replace "http://" with "mailto:"
What tag do you use to make your background an image? -
ANSWER ✔✔<body background = "filename">
COPYRIGHT©NINJANERD 2025/2026. YEAR PUBLISHED 2026. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. PRIVACY
STATEMENT. ALL RIGHTS RESERVED
3
, (replace filename with the name of the background image)
What tag do you use to add a picture? - ANSWER ✔✔<img>
What is different about the img tag? - ANSWER ✔✔it does not have a
beginning and ending tag
What are the attributes for the <img> tag - ANSWER
✔✔src="filename"
border="size"
align="position"
width="size"
height="size"
What does the src= do? - ANSWER ✔✔when inserting an image, it
allows you to specify the filename of the image
What does border= do when it comes to inserting images? -
ANSWER ✔✔specifies if the border is included in the picture
What does align= do when it comes to inserting images? - ANSWER
✔✔specifies the alignment of the of the picture