Menu
Coddy logo textTech

Section À propos de moi

Fait partie de la section Fundamentals du Journey HTML de Coddy — leçon 33 sur 60.

challenge icon

Défi

Facile

Ceci est votre profil — faites savoir aux gens qui vous êtes ! 

  1. Après avoir ajouté votre photo de profil, créez un <div>
  2. À l'intérieur, ajoutez un titre avec <h2> qui dit 'About Me'. Ajoutez un court paragraphe <p> pour partager un peu sur vous-même.

Par exemple :

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

Essayez vous-même

<!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>

Toutes les leçons de Fundamentals