Hi, I’ve read about Video and audio content. I tried the code:
<video controls>
<source src="rabbit320.mp4" type="video/mp4">
<source src="rabbit320.webm" type="video/webm">
<p>Your browser doesn't support HTML5 video. Here is a <a href="rabbit320.mp4">link to the video</a> instead.</p>
</video>
However, when I delete both <source> elements,
<video controls>
<p>Your browser doesn't support HTML5 video. Here is a <a href="rabbit320.mp4">link to the video</a> instead.</p>
</video>
the content of the <p> does not show.
I’ve tried firefox and edge but the the content of the <p> does not show. Can anyone clarify me why such thing occur?