Bob's Profile

Welcome back, Bob!

Bob's Image

Age: 30

Location: New York

A friendly face. Always passionate about...

coding, coffee, and good vibes.

Email: bob@example.com

Phone: 555-123-4567

Contact Us
``` ```css /* style.css */ body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; line-height: 1.6; } header { background-color: #eee; padding: 20px; text-align: center; } header h1 { font-size: 3em; margin: 0; } header p { font-size: 1.2em; margin-bottom: 10px; } .profile-container { max-width: 600px; margin: 20px auto; padding: 20px; border: 1px solid #ddd; border-radius: 10px; } .profile-container img { max-width: 100%; height: auto; border-radius: 50%; margin-right: 10px; } .profile-container h2 { font-size: 2em; margin-bottom: 20px; } .profile-container p { font-size: 1.1em; margin-bottom: 15px; } .bio { font-size: 1.1em; margin-bottom: 20px; } .contact { margin-bottom: 20px; } .contact a { color: blue; text-decoration: none; } .contact a:hover { text-decoration: underline; } /* Responsive design (basic) */ @media (max-width: 768px) { .profile-container { width: 100%; margin: 20px auto; padding: 20px; border: 1px solid #ddd; border-radius: 10px; } .profile-container img { max-width: 100%; height: auto; border-radius: 50%; } .profile-container h2 { font-size: 2.5em; } .profile-container p { font-size: 1em; } }