face-detective / index.html
Zhu-FaceOnLive's picture
add seo content
8614a6b verified
Raw
History Blame Contribute Delete
4.19 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FaceFlip Detective | Reverse Face Search Engine - Find People by Photo</title>
<meta name="description" content="Use our advanced reverse face search technology to find people across social media, public records and the web. Upload a photo to find matching faces instantly.">
<meta name="keywords" content="reverse face search, find people by photo, face recognition search, image search, photo lookup, find someone with a picture">
<meta property="og:title" content="FaceFlip Detective | Reverse Face Search Engine">
<meta property="og:description" content="Find people across the web using our powerful face recognition technology.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://faceflipdetective.com">
<meta property="og:image" content="https://static.photos/technology/1200x630/1">
<meta name="twitter:card" content="summary_large_image">
<link rel="canonical" href="https://faceflipdetective.com">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/loader.js"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-12">
<div class="max-w-4xl mx-auto text-center mb-12">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Reverse Face Search</h1>
<p class="text-xl text-gray-600">Upload an image to find similar faces across the web</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 md:p-8 max-w-3xl mx-auto">
<div id="drop-zone" class="border-2 border-dashed border-gray-300 rounded-lg p-8 text-center cursor-pointer hover:border-blue-400 transition-colors">
<div id="upload-content">
<i data-feather="upload" class="w-12 h-12 mx-auto text-blue-500 mb-4"></i>
<h3 class="text-xl font-semibold text-gray-700 mb-2">Drag & Drop Image</h3>
<p class="text-gray-500 mb-4">or click to browse files</p>
<input type="file" id="file-input" accept="image/*" class="hidden">
<button id="browse-btn" class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded-lg transition-colors">
Select Image
</button>
</div>
<div id="preview-container" class="hidden">
<div class="relative">
<img id="image-preview" src="" alt="Preview" class="max-h-64 mx-auto rounded-lg">
<button id="clear-btn" class="absolute top-2 right-2 bg-white rounded-full p-2 shadow-md hover:bg-gray-100">
<i data-feather="x" class="w-4 h-4 text-gray-700"></i>
</button>
</div>
<button id="search-btn" class="mt-6 bg-blue-500 hover:bg-blue-600 text-white px-8 py-3 rounded-lg font-medium transition-colors">
Search Faces
</button>
</div>
</div>
</div>
<div id="results-section" class="hidden mt-16 max-w-6xl mx-auto">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Search Results</h2>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4" id="results-grid">
<!-- Results will be populated here -->
</div>
</div>
</main>
<custom-loader></custom-loader>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>