NEED HELP WITH TASK 4.2 NOTHING SEEMS TO BE WORKING PLEASE HELP!!!
https://codepen.io/kosmicMillard/pen/NWbdbwp
i keep getting errors on my landing product page!
when i run the html and css on ANALYZE IN CODE PEN i keep getting errors like?
NEED HELP WITH TASK 4.2 NOTHING SEEMS TO BE WORKING PLEASE HELP!!!
https://codepen.io/kosmicMillard/pen/NWbdbwp
i keep getting errors on my landing product page!
when i run the html and css on ANALYZE IN CODE PEN i keep getting errors like?
Hi @skmill
You know better what you are trying to achieve, if you are a bit more specific about what problem you are facing then you can get help quicker.
hi its below and the post i had to repost it
Yea but you need to be specific, what are you trying to do that’s not working. One thing at a time.
sorry for late reply but those bits in red.
Like im lost
A lot of the messages have to deal with the fact that you are not closing your opening tags.
For example, this is the correct code for the youtube video
<iframe width="560" height="315" src="https://www.youtube.com/embed/iI2D4LbV6Os" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
Input tags are self closing which explains this error. Get rid of the end input tag and make sure to close that opening tag.
<input id="submit"type="submit"value="SUBSCRIBE"class="btn"</form></input>
Also, please don’t use br tags like this
<br>
<br>
<br>
<br>
<br>
<br>
Use css instead to create space between elements.
oh thank you so much this is what i needed help on
for the input tag i dont put a closing tag to it?
You wrote this
<input></input>
The correct way is this
<input>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
oh okay i see now, i thought you needed the slash symbol(/) to close it.
thankyou for correcting me
Some people put the / in there. You will do that when you learn React. But you should get rid of that end tag. </input>
Hi there again could you review or check my code again i think i deleted something i do apologise for bothering you with this
it has to do with your iframe hint…hint
It is getting better but there are still some syntax errors that need your attention.
One of the issues is here. Semicolon should not be there.
width="100px";>
I think your width and height for the image should go in your css anyway.
Here, your h1 ending tag should go at the end here. Not a few lines down the page.
<h1><u> Carter </u>
You have a typo at the end here
<section class="hero"><ection>
The inputs need to be inside the form. Opening tag needs to be closed.
This is incorrect
<form id="form" action="https://www.freecodecamp.com/email-submit"<form>
This is still incorrect.
<input id="email" name="email" type="email" placeholder="enter your email address"required<input>
You don’t need that extra input tag at the end. Please look at that link to mdn docs I sent earlier on how to properly write input tags.
Correct example:
<input type="text" id="name" name="name" required minlength="4" maxlength="8" size="10">
I would also suggest creating separate topics for your tribute page and survey form. There are probably some syntax errors there as well.
I think cleaning up the first three projects before moving onto the technical page would be a good idea.
Hi there thanks for the help ,erm this is for the application process so I’m still kind of new to this.
<input id="email" name="email" type="email" placeholder="enter your email address"required<input>
- if I remove the last input tag my subscription button dissappears.
<form id="form" action="https://www.freecodecamp.com/email-submit"<form>
- same again my form button disappears .
Im pretty much stuck now.
I’m sorry to bother you again, but can you help me please.
The problem is you are not closing these tags
You have this
But there is no >
at the end. You need to close the tags. Like in the example shown above earlier I wrote.
You can see that it is closed properly with a >
at the end.
This is the correct way to write the subscribe button.
<input id="submit" type="submit" value="SUBSCRIBE" class="btn">
Hi there thankyou for replying to me
Ive made a new form so i can analzye it better without getting my other page messed up.
im still having problems with the form.
Tag must be paired, missing: [ ], start tag match failed [ ] on line 102.
the test cases are very specific to tag and id’s which you are missing from the project