Build a List of Major Web Browsers - Step 5

Tell us what’s happening:

hello, ive written my html code as it appears but the system keeps refusing it.

Your code so far

<!DOCTYPE html> 
<html lang="en"> 
    <head> 
        <meta charset="UTF-8"> 
        <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
        <title>List of Browsers and Descriptions</title> 
    </head> 
    <body> 
        <h1>List of Major Web Browsers</h1> 
        <dl>
            <dt>Google Chrome</dt>
            <dd>This is a free web browser developed by Google and first released in 2008.</dd>

            <dt>Firefox</dt>
            <dd>This is a free web browser developed by the Mozilla Corporation and first created in 2004.</dd>


<!-- User Editable Region -->

    <dt> Safari</dt>
    
    <dd>  This browser was developed by Apple and is the default browser for iphone, ipad and Mac devices.</dd>

<!-- User Editable Region -->

        </dl>
    </body> 
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0

Challenge Information:

Build a List of Major Web Browsers - Step 5

Double check the capitalization ( iPad). You can copy/paste the sample text if it helps.

You should also remove the extra white space between the opening tags and text

    <dt>     Extra white space</dt>
    <dt>Correct</dt>