HTML Exam 98-383 Graded A+ 2024
<!DOCTYPE> - ANSWER-Tells the browser which version of HTML the page is using
Example:
<!DOCTYPE html>
<article> - ANSWER-Specifies independent, self-contained content
<aside> - ANSWER-Defines some content aside from the content it is placed in
Example:
<aside>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
<audio> - ANSWER-Defines sound
Example:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
</audio>
<br> - ANSWER-Used for a line break
<button> - ANSWER-Defines a clickable button
Example:
<button type="button">Click Me!</button>
<canvas> - ANSWER-Used to draw graphics, on the fly, via scripting (usually
JavaScript)
<caption> - ANSWER-Defines a table caption
<datalist> - ANSWER-Specifies a list of pre-defined options for an <input> element
<details> - ANSWER-Specifies additional details that the user can view or hide on
demand
<div> - ANSWER-Defines a division or a section in an HTML document.
Example:
, <div style="background-color:lightblue">
<fieldset> - ANSWER-Groups related elements in a form
<figure> - ANSWER-Specifies self-contained content
<footer> - ANSWER-Defines a footer for a document or section
<form> - ANSWER-Defines a form that is used to collect user input
<h1> through <h6> - ANSWER-Placed before a header of a page
Example:
<h1>This is heading 1</h1>
<header> - ANSWER-Represents a container for introductory content
Example:
<header>
<h1>Most important heading here</h1>
<h3>Less important heading here</h3>
<p>Some additional information here</p>
</header>
<iframe> - ANSWER-Specifies an inline frame. An inline frame is used to embed
another document within the current HTML document.
Example:
<iframe src="https://www.w3schools.com"></iframe>
<img> - ANSWER-Defines an image
Example:
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
<li> - ANSWER-Defines a list item
Example:
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<link> - ANSWER-Defines a link between a document and an external resource
<!DOCTYPE> - ANSWER-Tells the browser which version of HTML the page is using
Example:
<!DOCTYPE html>
<article> - ANSWER-Specifies independent, self-contained content
<aside> - ANSWER-Defines some content aside from the content it is placed in
Example:
<aside>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
<audio> - ANSWER-Defines sound
Example:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
</audio>
<br> - ANSWER-Used for a line break
<button> - ANSWER-Defines a clickable button
Example:
<button type="button">Click Me!</button>
<canvas> - ANSWER-Used to draw graphics, on the fly, via scripting (usually
JavaScript)
<caption> - ANSWER-Defines a table caption
<datalist> - ANSWER-Specifies a list of pre-defined options for an <input> element
<details> - ANSWER-Specifies additional details that the user can view or hide on
demand
<div> - ANSWER-Defines a division or a section in an HTML document.
Example:
, <div style="background-color:lightblue">
<fieldset> - ANSWER-Groups related elements in a form
<figure> - ANSWER-Specifies self-contained content
<footer> - ANSWER-Defines a footer for a document or section
<form> - ANSWER-Defines a form that is used to collect user input
<h1> through <h6> - ANSWER-Placed before a header of a page
Example:
<h1>This is heading 1</h1>
<header> - ANSWER-Represents a container for introductory content
Example:
<header>
<h1>Most important heading here</h1>
<h3>Less important heading here</h3>
<p>Some additional information here</p>
</header>
<iframe> - ANSWER-Specifies an inline frame. An inline frame is used to embed
another document within the current HTML document.
Example:
<iframe src="https://www.w3schools.com"></iframe>
<img> - ANSWER-Defines an image
Example:
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
<li> - ANSWER-Defines a list item
Example:
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<link> - ANSWER-Defines a link between a document and an external resource