I have already created the button, and according to the walk-through video, when I click it, I should see the story with blank spaces, but instead, this is what happens:
What are the instructions asking you to do actually? (Sorry but I can’t view that project without premium.)
Did the site in the mini browser to the right “https://localhost/story.html” pop up after clicking on your button? Your project file is called index.html but the browser is showing the content of a file called story.html - I don’t see a link to that page in your index.html - that’s why I’m asking for more info.
My problem was actually that when I pressed my button, I am supposed to see the story with blank spaces, instead of what happened in the screenshot I sent you previously.
Here is what it actually asked me to do.
We’ll be collecting information from our users using a <form> so, first, we have to add a <form> under the <hr> element inside the <body> of index.html .
Assign the <form> an action of "story.html" and a method of "GET" .
We’ll be sending information from our form to story.html using a GET request.
In the <form> , create a submit button by adding an <input> with a type of "submit" . Assign the value a value of "Form My Story!" . Save your code to see the button rendered.
.We’ll be collecting information from our users using a <form> so, first, we have to add a <form> under the <hr> element inside the <body> of index.html .
Assign the <form> an action of "story.html" and a method of "GET" .
Weโ€ll be sending information from our form to story.html using a GET request.
In the <form> , create a submit button by adding an <input> with a type of "submit" . Assign the value a value of "Form My Story!" . Save your code to see the button rendered.
Besides the missing form closing tag </form> I wonder if it will work already by capitalizing some letters of the value so it matches the Form My Story! it asked you to put in there.
I have completed HTML course from code academy. It was great! Its just I am not a pro member so I complete my project from Youtube, some users have had uploaded there so I just look at instructions and complete project on my own. So i just wanted to say, you have not included “name” attribute in tag