<p> Hi, my name is Mr. King. <p>
Closing tag needs a "/"
The tag <i> does what to text?
Creates italics
What tag is used to start a paragraph element?
<p>
The <img> tag should also contain these attributes, which specifies the size of the image (in pixels).
Width and Height
<h1> This example </h1>
Heading
<h2> In this section, you will learn about the vast wonders of the Universe. </h3>
The opening and closing tags need to be the same. Either <h2> & </h2>, or <h3> & </h3>.
The tag <b> does what to text?
Creates bold text
What tag is used to end the least important heading element?
</h6>
This required attribute for the <img> tag specifies different text for an image, if the image for some reason cannot be displayed.
Alt
<p> This example </p>
Paragraph
<h1>This heading is going to be about dogs.</h1>
</p>This paragraph will be about both of my dogs.</p>
The opening paragraph tag does not need a "/"
The HTML document itself begins with these tags.
<html> and </html>
This tag is used to create space between elements.
<br>
This attribute is used to add to an element, such as color, font, size, and more.
Style
<!DOCTYPE>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
The DOCTYPE tag needs HTML in the tag.
All HTML documents must start with this document type declaration.
<!DOCTYPE html>
The visible part of the HTML document is between these tags.
<body> and </body>
This attribute is meant to assist search engines and browsers.
Lang (Language)
<img src="img_example.jpg" width="500" height="600>
Image
<a href= "https://sites.google.com/greenvilleschools.us/ajking/home"> This is a link that will take you to Coach King's website.
This HTML link tag needs to be closed with </a>
Some HTML elements have no content (like the <br> element). These elements are called ________ elements.
Empty
What what tag is used to create a horizontal line on the web page?
<hr>
The value of THIS attribute will be displayed as a tooltip when you mouse over the element.
Title
<html lang="en">
Language Attribute