help me
How can I complete this with semantic tags? <body dir="rtl"> <> <h1>media</h1> </> <> <> <h2>movies</h2> <> <> <h3>first movie</h3> <!- - Video Tag - -> </> </> <> <> <h3>second movie</h3> <!- - Video Tag - -> </> </> </> <> <h2>musics</h2> <> <> <h3>first music</h3> <!- - Audio Tag - -> </> </> <> <> <h3>second music</h3> <!- - Audio Tag - -> </> </> </> </> <> <p>copywrite.</p> </> </body> what's wrong ? I have this errors: Videos and audios part structure should be correct <body dir="rtl"> <header> <h1>media</h1> </header> <main> <section> <h2>movies</h2> <article> <h3>first movie</h3> <video controls> <source src="assets/videos/video_1.mp4" type="video/mp4"> </video> </article> <article> <h3>second movie</h3> <video controls> <source src="assets/videos/video_2.webm" type="video/webm"> </video> </article> </section> <section> <h2>musics</h2> <article> <h3>first music</h3> <audio controls> <source src="assets/audios/audio_1.mp3" type="audio/mpeg"> </audio> </article> <article> <h3>second music</h3> <audio controls> <source src="assets/audios/audio_2.mp3" type="audio/mpeg"> </audio> </article> </section> </main> <footer> <p>copywrite.</p> </footer> </body> </html>