Questions and Answers 100% Pass
Why should the document type declaration be included in all HTML
documents? - ANSWER✔✔-To specify the HTML standard being used in
the document.
Which of the following is the current HTML standard? - ANSWER✔✔-
HTML5
The contents of the <title> tag will appear where in a modern browser? -
ANSWER✔✔-The browser's tab or title bar
All HTML code must be nested within which of the following tags? -
ANSWER✔✔-<html>
Which of the following tags would contain the HTML for a web page's
visible content? - ANSWER✔✔-<body>
The following HTML code should only exist within which one of the
following tags?
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 1/32
,<title>Codecademy</title> - ANSWER✔✔-<head>
Which of the following tags instructs the browser to expect a well-formed
HTML document? - ANSWER✔✔-<!DOCTYPE html>
Which of the following tags contains metadata about the webpage? -
ANSWER✔✔-<head>
The acronym "HTML" stands for which of the following? - ANSWER✔✔-
HyperText Markup Language
In the following code, the empty line of space between the heading and the
first paragraph is supposed to increase the vertical space between them in
the browser, but fails to do so. Why?
<a href="https://www.codecademy.com/">Codecademy</a> -
ANSWER✔✔-In an HTML file, whitespace does not affect the layout of a
webpage because the browser ignores it.
Which of the following best describes why HTML comments are important
to web development? - ANSWER✔✔-Comments clarify code and makes
code easier to understand for other developers
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 2/32
,The following code results in no visible output in the browser. Why?
<ol>
</ol> - ANSWER✔✔-List items must be added to list
How many different heading elements does HTML support? -
ANSWER✔✔-6
Which of the following is the best way of improving the code below?
<img src="https://www.codecademy.com/laptop.jpg" /> - ANSWER✔✔-
Include an alt attribute and a description of the image.
The following code is supposed to display an image, but fails to do so.
Why?
<img https://www.example.com/laptop.jpg /> - ANSWER✔✔-The src
attribute is missing and must be set equal to the image url, enclosed in
double quotation marks.
What are the two components of HTML attributes? - ANSWER✔✔-Name,
Value
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 3/32
, Which of the following tags can be used to add a paragraph to a web page?
- ANSWER✔✔-<p>
The following code creates a link to another page. Which of the following
will cause the page to open in a new browser window?
<a href="https://www.codecademy.com/">Codecademy</a> -
ANSWER✔✔-Add the target attribute, with its value set to _blank
The following code is supposed to to create a link to another web page, but
fails to do so. Why?
<a>Codecademy</a> - ANSWER✔✔-The <a> element is missing the href
attribute set to the URL of the Code academy website.
How would the output of the code below change if <ul> and </ul> were
changed to <ol> and </ol>, respectively?
<ul>
<li>Lorem</li>
<li>Ipsum</li>
<li>Horribilis</li>
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 4/32