FOUNDATIONS CERTIFICATION
EVALUATION EXAMS SET TESTED
QUESTIONS WITH VERIFIED DETAILED
RATIONALES
⩥ This element's opening and closing tags enclose everything but the
Doctype Declaration..
Answer: <html>...</html>
⩥ Specifies the metadata, which is data that describes the document's
data.
Answer: <meta>
⩥ This element's opening and closing tags enclose the name of the
HTML document..
Answer: <title>...</title>
⩥ Contains all the visible content of a web page..
Answer: <body>...</body>
,⩥ Provides additional information about the HTML element and is
included only in the opening element tag..
Answer: Attribute
⩥ This element's tags contain the document title, document metadata,
and various other elements that are typically not displayed in the
webpage..
Answer: <head>...</head>
⩥ an element that only needs an opening tag.
Answer: Void element
⩥ A collection of web development tools that are built into the desktop
Chrome browser..
Answer: Chrome DevTools
⩥ checks that an HTML document conforms to the standard.
Answer: HTML validator
⩥ A feature that is part of a language that is officially discouraged
becaues newer or better features exist, or becuase the feature is no longer
considered safe..
Answer: Depreciated
, ⩥ a paragraph element, the basic unit of text in an HTML document.
Answer: <p>...</p>
⩥ an unprinted character such as the spaces between words and lines of
text.
Answer: Whitespace
⩥ The line break element creates a line break in a paragraph, such that
content after the line break appears on new line..
Answer: <br>
⩥ element that encases a collection of related content..
Answer: <section>...</section>
⩥ a heading element that typically provides a title for each section.
Values range from h1 through h6, h1 being the largest and h6 being the
smallest..
Answer: <h1>...<h1>
⩥ HTML comment, a portion of the html document that is not displayed
by the browser..
Answer: <!--...-->