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!
@joldrit Since we don’t have any questions from you, I will start by looking at your code. Just from looking at your current code you shared, it seems you maybe unsure the next step. For step 42 you are asked to create a button (add the text “Submit” to the button) The question may be, how do you do that. The skill of searching the web browser for clues is a wonderful skill. Anyways, I will give you a hint by sharing a resource that shows an example. https://www.w3schools.com/tags/att_button_formaction.asp You can put your code on line 38. If you have any questions related to buttons or form attributes please ask, and someone is more than happy to help you more directly. Please share what you have tried, as well as any other useful information. By the way well done working your way to step 42 in the project.
I was also stuck on this part as the question and hints it gives you doesnt explain properly . reading your link helped me understand my problem the question asks = Step 42
The button element is used to create a clickable button.
Add a button element with the text Submit below the input element. The default behavior of clicking a form button without any attributes submits the form to the location specified in the form’s action attribute.
from my understanding an as we had just finished the “input type” line most of us then assuming the next part would be what i failed to understand was that buttons can contain other things other than text. The correct text it accepts is Submit
Also OP spelled Button wrong in his text
but thank you for sharing this link after reading it a few times i understood my mistake and how to correct it