The image I’m supposed to using an tag in Task 14 won’t display when I save my work
Hey!
How does your code look, that way you people may find it easier to help you.
First thing I thought of was, how did you use the tag? Remember that it’s a self closing tag so, you need to say <embed … >
Also remember to use src=“”.
But like I said, how does your code look?
I did this and it worked:
/video>
<embed
src="https://content.codecademy.com/courses/Semantic%20HTML/nyc-skyline.jpeg"></embed>
<audio controls src="https://content.codecademy.com/courses/Semantic%20HTML/nyc-sounds.mov"></audio>
</section>
</main>
This answer includes the audio
tag added in step 15.
Thanks for sharing your code.
I think that your code worked because of how forgiving certain browsers are on HTML.
From what I can see, your embed tag isn’t correct, even though it worked, the syntax isn’t best practice.
The tag is a self-closing tag, so you needn’t use ; only is needed.
I can’t quite see the last part of your advice. I think we need to insert </> to add code. Thanks for your input! I think I know what you mean.
I hope I was helpful, but hen again your problem was resolved with my input it seems.
Happy coding!
You were really helpful. I appreciate it! Happy coding!
I think this is the proper way to do it?
<embed
src="https://content.codecademy.com/courses/Semantic%20HTML/nyc-skyline.jpeg"
>