Profile Card
Part of the Practical Frontend section of Coddy's HTML journey — lesson 32 of 35.
Challenge
EasyYou are given a complete HTML page about Amelia Earhart, a famous aviator. The page already has the structure and content, but it needs CSS styling to make it look good on both mobile and larger screens.
Your task is to add the missing CSS styles to complete the design.
- Define CSS variables for primary color, text color, and background. Apply them to the card’s background, text, heading, and button.
- Style the larger screen layout (
min-width: 768px):- Show the image on the left and the text on the right (use
flex-direction: row). - Set proper widths for the image and the content.
- Show the image on the left and the text on the right (use
- On larger screens, apply
object-fit: cover;to the image so it scales nicely.
Try it yourself
<!DOCTYPE html>
<html>
<head>
<title>Explorer Profile Card</title>
<style>
/* Variables */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.card {
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
overflow: hidden;
max-width: 600px;
display: flex;
flex-direction: column;
}
.card img {
width: 100%;
height: auto;
}
.card-content {
padding: 20px;
color: #000;
}
.card-content h2 {
margin-top: 0;
color: #555;
}
.card-content p {
line-height: 1.5;
margin-bottom: 20px;
}
.card-content button {
background-color:#555;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s ease;
}
.card-content button:hover {
background-color: #1b4f72;
}
/* Larger screens → side by side */
</style>
</head>
<body>
<div class="card">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/b2/Amelia_Earhart_standing_under_nose_of_her_Lockheed_Model_10-E_Electra%2C_small.jpg" alt="Amelia Earhart">
<div class="card-content">
<h2>Amelia Earhart</h2>
<p>Amelia Earhart was a pioneering American aviator who became the first woman to fly solo across the Atlantic Ocean. She inspired generations with her courage and adventurous spirit.</p>
<button>Read More</button>
</div>
</div>
</body>
</html>