+1 (229) 255-3712
glass
pen
clip
papers
heaphones

  

Question:

Write an HTML document to produce a simple web page which includes:

  • A video element.
  • An audio element.
  • The use of at least two new HTML5 elements. (for example section, article, canvas,
  • aside, etc…)

    Example of the answer;

    <!DOCTYPE html>

    <html>

    <head>

    <title>Question 3</title>

    </head>

    <body>

    </video>

    </section>

    <section>

    <h2>Listen to my podcast</h2>

    <audio controls>

    <source src="gods.mp3" type="audio/mp3">

    </audio

    </section>

    <article><h2>Why you should watch movies at times.</h2>

    <p>Did you know that apart from being entertained, watching

    drama movies can improve emotional intelligence?<br>while those are not my findings but according to a study conducted in 2015.</p></article>

    </body>

    </html>