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!
Though the text in this quote is not correct, I am using it to explain the error message you are receiving @ASATCHEL .
Notice how there is an <h1> opening element tag, and an </h1> closing tag around the text. Notice the slash before the h1 in the closing tag.
The error message appears to be stating there opening <h2> is missing before the text that you have entered into the code.
Please make sure to always have the opening and closing element tags for elements?
Some elements, you will find, do not require both opening and closing tags. Those are self closing, for example: <img>, or <link> or <meta> are all self closing elements and do not require a second tag to close them.
Please for any new questions use the HELP that appears after three failed attempts at that step to post the code along with your questions? It allows for easier and quicker responses that focus on the problem.