Menu
Coddy logo textTech

About Me Section

Part of the Fundamentals section of Coddy's HTML journey. Lesson 33 of 60.

challenge icon

Challenge

Easy
This is a continuation of your profile project! Let's build on the structure you've already created. Your page should now include three distinct sections, each wrapped in a <div> tag:

1. Header Section: A <div> containing an <h1> with your name and a <p> with a short tagline.
2. Profile Picture: A <div> containing an <img> tag.
3. About Me Section: A <div> containing an <h2> with the text 'About Me' and a <p> tag sharing a little about yourself.

Ensure your HTML structure follows this order to pass the tests.

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <!-- This is a continuation of your project. Please structure your page using the three sections below. -->
        
        <!-- Header Section: Add an <h1> and a <p> tag inside this div -->
        <div>
            
        </div>
        
        <!-- Profile Picture Section: Add an <img> tag inside this div -->
        <div>
            
        </div>
        
        <!-- About Me Section: Add an <h2> and a <p> tag inside this div -->
        <div>
            
        </div>
    </body>
</html>

All lessons in Fundamentals

Practice on your own: Web playground