
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Linktree with Profile Picture</title>
    <!-- Font Awesome for Icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            text-align: center;
            padding: 50px;
        }
        h1 {
            font-size: 3em;
            color: #333;
            margin-top: 20px;
        }
        .profile-pic {
            width: 120px; /* Adjust the size as needed */
            height: 120px;
            border-radius: 50%; /* Makes the image circular */
            object-fit: cover; /* Ensures the image covers the circular space */
            margin: 0 auto;
            border: 3px solid #fff; /* Optional: adds a white border around the image */
        }
        .link-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #4CAF50;
            color: white;
            padding: 15px;
            margin: 10px auto;
            width: 80%;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            transition: background-color 0.3s ease;
        }
        .link-button:hover {
            background-color: #45a049;
        }
        .link-button i {
            margin-right: 10px;
        }
    </style>
</head>
<body>

    <!-- Profile Picture -->
    <img src="profile.jpg" alt="Profile Picture" class="profile-pic">

    <h1>Welcome to My Linktree</h1>

            <a href="https://twitter.com/username" class="link-button" target="_blank">
            <i class="fab fa-twitter"></i> Twitter        </a>
            <a href="https://instagram.com/username" class="link-button" target="_blank">
            <i class="fab fa-instagram"></i> Instagram        </a>
            <a href="https://github.com/username" class="link-button" target="_blank">
            <i class="fab fa-github"></i> GitHub        </a>
            <a href="https://linkedin.com/in/username" class="link-button" target="_blank">
            <i class="fab fa-linkedin"></i> LinkedIn        </a>
            <a href="https://facebook.com/username" class="link-button" target="_blank">
            <i class="fab fa-facebook"></i> Facebook        </a>
    
</body>
</html>
