I am a total newcomer. I don’t know how to do code.
<html>
<body>
<!-- User Editable Region -->
<CatPhotoApp>Hello CatPhotoApp</CatPhotoApp>
<!-- User Editable Region -->
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 1
Link to the challenge:
Hey, welcome to fCC and the forum.
You don’t want to change the name of the element itself, so you want to leave the <h1>
and </h1>
as they are. You might want to reset the step to get the original HTML back.
The text for an element goes between the opening and closing tags for the element. So the text for an h1
element goes between the opening and closing h1
tags. At the beginning, the text for the h1
element is Hello World
. You just want to change that text to CatPhotoApp
.
Here this step is telling you to put the text CatPhotoApp
in between h1 tag
.
And when you will wrap that into an h1 tag
that will become your first heading
.
Suppose I wanna wrap Hello World
then I will follow below step.
<p>Hello World</p>
Hope you understand.