Help me in solving HTML46 problem

My issue

i cant solve problem even after trying so many times

My code

// your code goes here

Learning course: Learn HTML / CSS
Problem Link: CSS Internal stylesheet Practice Problem in HTML / CSS - CodeChef

@rehan9
u have to do it like this

<head>
    <!-- Add the style elements for <h2> and <ol> below this line -->
    <style>
        h2{
            color: blue;
            font-size: 16px;
        }
        ol{
            color:blue;
            font-size: 16px;
        }
    </style>
        
</head>
    

<body>
    
    <header>
        <h1>My recent trip to Greece</h1>
    </header>

    <main>
        <h2>Overview</h2>
        <h3>
            <ol>
                <li>Greece</li>
                <li>Trip Options</li>
                <li>Trip Itinerary</li>
            </ol>
        </h3>

</body>