HTML: LEVEL-7>Lesson-4 solution plz
							 Kindly, help me complete this exercise. I am stuck! kindly provide me with proper code. I applied below code but it shows "Add the Sidebar <div> and include the text Sidebar in it."
<!-- CODE: -->
<!doctype html>
<html>
    <head>
        <title>My webpage</title>
    </head>
    <body>
        <!-- Header -->
        <div style="overflow:auto">
            <div style="width:25%;float:left;">
                Sidebar
            </div>
            <div style="width:75%">
                Main Content
            </div>
        </div>
    </body>
</html>