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 your profile—let people know who you are! 

  1. After adding your profile picture, create a <div>
  2. Inside it, add a heading with <h2> that says 'About Me'. Add short paragraph <p> to share a little about yourself.

For example:

  • Hello! I'm a passionate web developer learning HTML basics. I enjoy coding and building creative projects.

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <!-- Header Section -->
        <div>
            <h1>John Doe</h1>
            <p>Web Developer | Creative Thinker</p>
        </div>
        
        <!-- Profile Picture -->
        <div>
            <img src="https://storage.googleapis.com/coddy-15505.appspot.com/public/avatars/avatar25.png" alt="My profile picture" width="200" height="200" />
        </div>
    </body>
</html>

All lessons in Fundamentals