Hell there! Welcome to the freeCodeCamp’s community forums.
In this challenge, you’re supposed turn the text “CatPhotoApp” into a heading by surrounding that text with an h1.
HTML is a markup language, meaning you can “mark” content with it. You can tell the browser how or in what way you want some text to show up. for example:
If i want my name “Taran” to be displayed as a heading which is smaller than h1 all i need to do is take my name and stick it between the h2 tag.
<h2> Taran </h2>
Pay special attention to the brackets < > and slashes /.