HTML family confusion

Hi @mcmichaeltyler93 !

Yes that is correct.

A parent is the element directly above an element in the document.

Here is another example:
The <ul> would be the parent of a <li>.

<ul>
  <li>example 1</li>
  <li>example 2</li>
  <li>example 3</li>
</ul>

You can use the preformatted text tool in the fcc editor or backticks on your computer.
Here is a helpful video and explanation for writing code into the forum.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Hope that helps!