<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="container">
<div class="row align-items-center">
<div class="col-xl-12 col-lg-12 col-md-12 col-12">
<div class="pt-20 rounded-top" style="background: url('https://codezillaye.com/path-to-your-background-image.jpg') no-repeat; background-size: cover;">
</div>
<div class="card rounded-bottom smooth-shadow-sm">
<div class="d-flex align-items-center justify-content-between pt-4 pb-6 px-4">
<div class="d-flex align-items-center">
<div class="avatar-xxl avatar-indicators avatar-online me-2 position-relative d-flex justify-content-end align-items-end mt-n10">
<img src="https://codezillaye.com/path-to-your-profile-image.jpg" class="avatar-xxl rounded-circle border border-2" alt="Image">
</div>
<div class="lh-1">
<h2 class="mb-0">codezillaye
<a href="#!" class="text-decoration-none"></a>
</h2>
<p class="mb-0 d-block">codezillaye.com</p>
</div>
</div>
<div>
<a href="#" class="btn btn-outline-primary d-none d-md-block">Edit Profile</a>
</div>
</div>
<ul class="nav nav-lt-tab px-4" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active" href="#">Followers</a>
</li>
</ul>
</div>
</div>
</div>
<div class="py-6">
<div class="row">
<div class="col-lg-4 col-12">
<div class="card mb-5 rounded-3">
<div>
<img src="https://codezillaye.com/path-to-your-image1.jpg" alt="Image" class="img-fluid rounded-top">
</div>
<div class="avatar avatar-xl mt-n7 ms-4">
<img src="https://codezillaye.com/path-to-your-avatar1.jpg" alt="Image" class="rounded-circle border-4 border-white-color-40">
</div>
<div class="card-body">
<h4 class="mb-1">codezillaye</h4>
<p>UX Designer</p>
<div class="d-flex justify-content-between align-items-center">
<a href="#!" class="btn btn-outline-primary">Follow</a>
<div class="dropdown dropstart">
<a href="#!" class="btn btn-ghost btn-icon btn-sm rounded-circle" id="dropdownMenuOne" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-vertical icon-xs">
<circle cx="12" cy="12" r="1"></circle>
<circle cx="12" cy="5" r="1"></circle>
<circle cx="12" cy="19" r="1"></circle>
</svg>
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuOne">
<a class="dropdown-item d-flex align-items-center" href="#!">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text me-2 icon-xxs dropdown-item-icon">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>Report</a>
<a class="dropdown-item d-flex align-items-center" href="#!">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-slash me-2 icon-xxs dropdown-item-icon">
<circle cx="12" cy="12" r="10"></circle>
<line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>
</svg>Block</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Repeat for other followers -->
<!-- Add additional follower cards as needed -->
</div>
</div>
</div>
</body>
</html>
.container {
margin: 0 auto;
max-width: 1200px;
padding: 20px;
}
.row {
display: flex;
flex-wrap: wrap;
}
.col-12, .col-lg-4, .col-md-12, .col-xl-12 {
padding: 10px;
box-sizing: border-box;
}
.card {
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.avatar-xxl {
width: 100px;
height: 100px;
}
.avatar-xl {
width: 80px;
height: 80px;
}
.avatar {
display: block;
margin: 0 auto;
border-radius: 50%;
border: 4px solid #fff;
}
.avatar-online {
position: relative;
}
.avatar-indicators {
position: absolute;
bottom: 0;
right: 0;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #00ff00;
}
.pt-20 {
padding-top: 20px;
}
.rounded-top {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.rounded-bottom {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.smooth-shadow-sm {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.lh-1 {
line-height: 1;
}
.d-flex {
display: flex;
}
.justify-content-between {
justify-content: space-between;
}
.align-items-center {
align-items: center;
}
.mt-n10 {
margin-top: -40px;
}
.mt-n7 {
margin-top: -28px;
}
.ms-4 {
margin-left: 16px;
}
.pb-6 {
padding-bottom: 24px;
}
.px-4 {
padding-left: 16px;
padding-right: 16px;
}
.mb-0 {
margin-bottom: 0;
}
.mb-1 {
margin-bottom: 4px;
}
.mb-5 {
margin-bottom: 20px;
}
.py-6 {
padding-top: 24px;
padding-bottom: 24px;
}
.btn {
padding: 8px 16px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
}
.btn-outline-primary {
color: #007bff;
border: 1px solid #007bff;
background: transparent;
}
.btn-outline-secondary {
color: #6c757d;
border: 1px solid #6c757d;
background: transparent;
}
.btn-ghost {
background: transparent;
border: none;
}
.btn-icon {
padding: 8px;
}
.rounded-circle {
border-radius: 50%;
}
.text-decoration-none {
text-decoration: none;
}
.text-primary {
color: #007bff;
}
.text-muted {
color: #6c757d;
}
.feather {
width: 1em;
height: 1em;
vertical-align: middle;
}
.feather-more-vertical {
stroke-width: 2;
}
.dropdown-menu {
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 10px;
}
.dropdown-item {
display: flex;
align-items: center;
padding: 8px 16px;
text-decoration: none;
color: #333;
}
.dropdown-item:hover {
background: #f8f9fa;
}
.dropdown-item-icon {
margin-right: 8px;
}
.nav {
display: flex;
}
.nav-link {
padding: 8px 16px;
text-decoration: none;
color: #007bff;
border: 1px solid transparent;
border-radius: 4px;
}
.nav-link:hover {
background: #f8f9fa;
}
.nav-link.active {
color: #fff;
background: #007bff;
border-color: #007bff;
}