OneCompiler

মানুষের ছবি

108
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>মানুষের ছবি</title> <style> body { font-family: Arial, sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; background-color: #f5f5f5; }
    .container {
        text-align: center;
        max-width: 800px;
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        color: #333;
        margin-bottom: 20px;
    }
    
    .person-image {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #4a90e2;
        margin-bottom: 20px;
    }
    
    .info {
        margin-top: 20px;
        color: #666;
    }
</style>
</head> <body> <div class="container"> <h1>মানুষের ছবি</h1>
    <!-- মানুষের ছবি -->
    <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=80" 
         alt="মানুষের ছবি" 
         class="person-image">
    
    <div class="info">
        <p>এটি একটি সাধারণ মানুষের ছবি যা Unsplash থেকে নেওয়া হয়েছে</p>
    </div>
</div>
</body> </html>