This tag identifies the header section of your document and is used primarily by search engines and browsers.
<head>
HTML is an acronym for what?
Hyper Text Markup Language
To adjust the size of an image, you would need to use these two attributes.
width= and height=
This is put at the start of your code to tell the web browser that your page uses HTML5
<!DOCTYPE html>
This element contains all the visible content of a web page.
<body></body>
This code creates an unordered (bulleted) list.
<ul></ul>
HTML can use six different levels of this element that are ordered from the highest level <h1> to the lowest level <h6>.
heading
An HMTL link address is specified with this attribute.
href=
This tag defines a line break.
<br>
This element creates a title in the browser toolbar and provides a title for the page when it is added to a persons favorites.
<title></title>
This attribute on a table header <th> or table data <td> element indicates how many columns that particular cell should span within the table.
colspan=
This is HTML coding where the line of code stands alone and is not closed with slash characters and is used to insert images, lists, breaks, horizontal rules and hyperlinks.
empty tag
This is the purpose of the src attribute
Specifies the URL of the image
HTML images are defined with this tag.
<img>
This element has content that is used to represent a two-dimensional object made of rows and columns.
<table></table>
Hyperlink that contains the full address of the destination file or of the Web site.
Absolute Hyperlink
This is used to input descriptions and keywords that improve search engine optimization.
Metadata
This target attribute specifies the linked document will open in a new tab.
"_blank"
Any visible content should be placed within the opening and closing _____________ tags.
<body>
This element is used to collect and send information to an external source.
This code creates comments that are visible to anyone that views the page source code, but are not rendered when the HTML document is rendered by a browser.
<!–– ––>
This tag makes use of a “/” character in order to effectively close out a beginning tag enclosed in sideways carets
self-closing tag
This attribute serves the following purpose: If an image fails to load on a web page, a user can mouse over the area originally intended for the image and read a brief description of the image.
alt=
HTML links are defined with the ______________ tag
<a>
This element serves as a container for content.
<div></div> or <span></span>