Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

I can’t complete the video compilation page due the browser keeps refreshing before the completion. Pls help me with idea. I have also tried the incognito mode in my chrome.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Video Compilation Page</title>
</head>

<body>
    <main>
        <h1>EMR</h1>
        <p>EMR stands for Electronic Medical Record. It is a digital version of a patient's chart, containing medical history, diagnoses, medications, and treatment plans within a single provider’s office or organization. Unlike EHRs, EMRs are generally used for diagnosis and treatment within one practice rather than being shared across multiple providers.</p>
        <section>
            <h2>What is EMR (electronic medical record)</h2>
            <p>Very explanatory video on EMR basics and usage.</p>
            <iframe width="560" height="315" src="https://www.youtube.com/embed/zy_OFMsAeJs" title="Youtube"></iframe>
        </section>
        <section>
            <h2>Mastering Electronic Health Records</h2>
            <p>In-depth tutorial on EHR/EMR concepts (EHR and EMR are often used interchangeably).</p>
            <iframewidth="560" height="315" src="https://www.youtube.com/embed/9ZQhUAayXDI" title="Youtube"></iframe>
        </section>
        <section>
            <h2>OpenEMR Tutorial for Beginners</h2>
            <iframewidth="560" height="315" src="https://www.youtube.com/embed/VlKZ5oAft4E" title="You"></iframe>
        </section>
    </main>

</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 26_0_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/145.0.7632.108 Mobile/15E148 Safari/604.1

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

In the 2nd and 3rd sections, you typed the iframe tag wrong by joining iframe and width, so the browser doesn’t see it as an iframe. Also, in the 3rd section you forgot the intro paragraph—each section should be h2 → p → iframe.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.