deepsite-project / profile.html
vivek3322's picture
NOT warking
6ad73f9 verified
Raw
History Blame Contribute Delete
4.54 kB
<!DOCTYPE html>
<html lang="hi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>प्रोफाइल | InstaChatFeed</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<style>
.bottom-nav {
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body class="bg-gray-100">
<div class="max-w-md mx-auto bg-white min-h-screen relative pb-16">
<!-- Profile Header -->
<header class="p-4 border-b">
<div class="flex justify-between items-center mb-4">
<button><i class="fas fa-cog"></i></button>
<h1 class="text-lg font-semibold">username</h1>
<button><i class="fas fa-bars"></i></button>
</div>
<div class="flex items-center">
<img src="http://static.photos/people/200x200/4" class="w-20 h-20 rounded-full mr-4">
<div class="flex-1">
<div class="flex justify-between mb-4">
<div class="text-center">
<p class="font-bold">42</p>
<p class="text-xs">पोस्ट</p>
</div>
<div class="text-center">
<p class="font-bold">1.2K</p>
<p class="text-xs">फॉलोअर्स</p>
</div>
<div class="text-center">
<p class="font-bold">356</p>
<p class="text-xs">फॉलोइंग</p>
</div>
</div>
<button class="w-full bg-gray-200 py-1 rounded-md text-sm font-medium">प्रोफाइल एडिट करें</button>
</div>
</div>
<div class="mt-4">
<h2 class="font-semibold">User Name</h2>
<p class="text-sm">यूजर बायो यहाँ</p>
</div>
</header>
<!-- Profile Tabs -->
<div class="border-b flex">
<button class="flex-1 py-3 text-center border-b-2 border-gray-900">
<i class="fas fa-th"></i>
</button>
<button class="flex-1 py-3 text-center text-gray-400">
<i class="fas fa-film"></i>
</button>
</div>
<!-- Posts Grid -->
<div class="grid grid-cols-3 gap-1">
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/5" class="w-full h-full object-cover">
</div>
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/6" class="w-full h-full object-cover">
</div>
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/7" class="w-full h-full object-cover">
</div>
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/8" class="w-full h-full object-cover">
</div>
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/9" class="w-full h-full object-cover">
</div>
<div class="aspect-square bg-gray-200">
<img src="http://static.photos/nature/320x240/10" class="w-full h-full object-cover">
</div>
</div>
<!-- Bottom Navigation -->
<nav class="bottom-nav bg-white border-t flex justify-around items-center p-3">
<a href="index.html" class="text-2xl"><i class="fas fa-home"></i></a>
<a href="#" class="text-2xl"><i class="fas fa-search"></i></a>
<a href="upload.html" class="text-2xl">
<button class="bg-gradient-to-r from-purple-500 to-pink-500 text-white w-12 h-12 rounded-full flex items-center justify-center text-xl shadow-lg">
<i class="fas fa-plus hovered-element"></i>
</button>
</a>
<a href="chat.html" class="text-2xl"><i class="fas fa-comment-dots"></i></a>
<a href="profile.html" class="text-2xl text-blue-500"><i class="fas fa-user"></i></a>
</nav>
</div>
</body>
</html>