<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Personal Profile Card</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #eef2f7;
font-family: sans-serif;
}
.profile-card {
background-color: #fff;
padding: 20px;
width: 250px;
text-align: center;
border-radius: 10px;
transition: all 0.3s;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.profile-card:hover {
box-shadow: 0 8px 20px rgba(0,0,0,0.4);
background-color: #f0f8ff;
}
.profile-card img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 15px;
}
.profile-card h2 {
margin: 10px 0 5px;
font-size: 1.2em;
color: #333;
}
.profile-card p {
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<div class=”profile-card”>
<img src=”https://via.placeholder.com/100″ alt=”Profile Photo”>
<h2>Jane Doe</h2>
<p>A passionate web developer who loves designing clean and responsive websites.</p>
</div>
</body>
</html>