I’m not so sure about the input element, are you sure it can contains other elements?
but the div and form elements can be correct, one of the two has a specific use so it is not correct for this situation, the other is more generic. So you can take the most appropriate one, give it an id attribute, and start with that
do you remember what the two do?
the projects are where you have to do all the learning, you need to try to search for the answers on your own for you to learn something here.
if you google one and the other you should be pretty sure on which one to use.
Youtube can be a great tool to help you learn to code. There are very good tutorials on there, thay have been a huge help to me, I don’t think I could have completed the course without youtube. I find it easier to learn there than anywhere else.
These projects are daunting when you first look at them but as @ILM said you should tackle them 1 user story at a time… small steps. If you don’t feel you have remembered enough of the course to tackle the project yet then you should go through the course a second time and you will be better equiped to tackle the projects.
Take as much time as you need it is not a race
User Story #5: Within the img-div element, I should see an element with a corresponding id="img-caption" that contains textual content describing the image shown in img-div
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 Edg/92.0.902.84
User Story #6: I should see an element with a corresponding id="tribute-info" , which contains textual content describing the subject of the tribute page. which element are my suppose to use to solve this???
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 Edg/93.0.961.38
You mean like between div or h3 or whatever? I don’t think it matters - just pick something that makes sense. If it is small, then something like ‘hx’ or ‘p’ might makes sense. If it is going to be bigger, then something like div or section might make more sense. I would expect in this case for it to be the latter.
User Story #7: I should see an a element with a corresponding id="tribute-link" , which links to an outside site that contains additional information about the subject of the tribute page. HINT: You must give your element an attribute of target and set it to _blank in order for your link to open in a new tab (i.e. target="_blank" ). i need further explanation on this,i’m stuck at this part of the project