in HTML we have something called element.
Elements you may know include: <h1></h1> <body></body> <section></section>
So you are being asked to add a new element called strong.
So just do it the same way. (opening tag, closing tag)
Make sure you put the tags around the text…
Okay, so we need to start fresh then.
Please click on the restart step button.
Then look at this line of code you are shown <figcaption>Cats hate other cats.</figcaption>
It contains a single element called figcaption
Notice that the name of the element figcaption is inside the angled brackets. <figcaption> and </figcaption>
The first one is called an opening tag.
The second one is called a closing tag.
Tags cannot contain whatever we want. They must contain special keywords that the browser understand. These keywords are what make up the language called HTML (hypertext markup language).
So for eg. <cats> is not a valid HTML element <CatPhotoApp> is also not valid.
The exercise is asking you to add a strong element.
The word strong here is a valid html keyword.
Please respond back and show me if you have understood what I said by typing out the word strong inside an opening tag and inside a closing tag.
awesome!!!
Now you just have to put the strong opening tag on the left of the words given to you.
And the closing tag on the right.
Try please and if you are still stuck please post your new code.