You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Hello @marymcmorris04
As you move forward with the steps for this exercise you are going to read many names like: element, tag, attribute, content and more. I made for you the following schematics to the most important, for now.
+--------------- Element -------------+
| |
+--- Start tag --+ End tag +--+
| | | |
<p class="saying">live and let live</p>
| || || |
| || |+-----Content----+
| |+-------+
| |Attribute
+----+ Value
Attribute
Name
With that as reference, let’s read the requirement of this step:
Find the h1 element and change its text to: CatPhotoApp
If you consult the diagram I posted, you might identify what an element is in what you had:
<h1>Hello World</h1>
And change the text “Hello World” (content) for what it is saying in the request.