Image of Audio Player(on webpage) But Audio File Not Playing?

I've saved an audio file orignally MP3 now changed to Ogg Vorbis. In the code I've written it as shown:

<audio>


<source


src="Sitepoint/eating-juicy-meat-7024.ogg" type="audio/ogg">


</audio>





Now the acutal audio image/player shows on my webpage. However, the actual audio file when clicked on play does not work.


Can anyone help as to where I went wrong?


Link to content: A Beginner's Guide to Learning HTML5 - Section 9

Can you confirm that there is a file in this location: “Sitepoint/eating-juicy-meat-7024.ogg”? If the file is not present you will still see the player but the timeline may show 00:00 / 00:00.

You can also confirm this by opening chrome dev tools and checking the console. An error will say: Failed to load resource: net::ERR_FILE_NOT_FOUND

Hope that helps!