Profile Card Designs

Profile photo

Jane Doe

FRONT-END DEVELOPER

Building beautiful, responsive websites with HTML, CSS, and JavaScript. Passionate about clean code and great user experiences.

📍 Brussels, Belgium

✉️ jane.doe@example.com

📱 +32 456 78 90

Profile photo

Mike Smith

UI/UX DESIGNER

Creating intuitive and accessible designs that users love. I turn complex problems into simple, elegant solutions.

📍 Amsterdam, NL

✉️ mike@example.com

📱 +31 123 45 67

Profile photo

Sarah Chen

FULL-STACK DEVELOPER

Full-stack developer with a passion for learning and building meaningful applications that make a difference.

📍 Berlin, DE

✉️ sarah.chen@example.com

📱 +49 987 65 43

📝 Your Turn: Build Your Own Profile Card

Use the code below as a template. Replace the placeholder content with your real information!

Profile photo

Your Name

YOUR TITLE

Write your bio here. Tell people what you do and what you're passionate about.

📍 Your City, Country

✉️ your.email@example.com

📱 +XX XXX XXX XXX

// HTML Structure for Profile Card
<div class="profile-card">
    <img src="photo.jpg" class="profile-img">
    <h2 class="profile-name">Name</h2>
    <div class="profile-title">Title</div>
    <div class="divider"></div>
    <p class="profile-bio">Bio text</p>
    <div class="contact-info">...</div>
    <button class="contact-btn">Contact Me</button>
</div>