| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Nexus3D | 3D Artist Portfolio</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| |
| .card-3d { |
| transform-style: preserve-3d; |
| transition: all 0.5s ease; |
| } |
| .card-3d:hover { |
| transform: rotateY(10deg) rotateX(5deg) scale(1.03); |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); |
| } |
| .gallery-item { |
| transition: all 0.3s ease; |
| } |
| .gallery-item:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .hero-bg { |
| background: radial-gradient(circle at center, #4f46e5 0%, #1e1b4b 100%); |
| } |
| .parallax { |
| background-attachment: fixed; |
| background-position: center; |
| background-repeat: no-repeat; |
| background-size: cover; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-900 text-gray-100 font-sans"> |
| |
| <nav class="fixed w-full bg-gray-900 bg-opacity-90 z-50 shadow-lg"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex items-center justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0"> |
| <span class="text-2xl font-bold text-indigo-400">Nexus<span class="text-white">3D</span></span> |
| </div> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-baseline space-x-4"> |
| <a href="#home" class="px-3 py-2 rounded-md text-sm font-medium text-white hover:text-indigo-300 transition">Home</a> |
| <a href="#portfolio" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-indigo-300 transition">Portfolio</a> |
| <a href="#about" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-indigo-300 transition">About</a> |
| <a href="#contact" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-indigo-300 transition">Contact</a> |
| </div> |
| </div> |
| <div class="md:hidden"> |
| <button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none"> |
| <i class="fas fa-bars text-xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div id="mobile-menu" class="hidden md:hidden bg-gray-800"> |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-indigo-300 transition">Home</a> |
| <a href="#portfolio" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-indigo-300 transition">Portfolio</a> |
| <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-indigo-300 transition">About</a> |
| <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-indigo-300 transition">Contact</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="home" class="hero-bg min-h-screen flex items-center justify-center pt-16"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Bringing <span class="text-indigo-300">Imagination</span> to Life</h1> |
| <p class="text-xl md:text-2xl text-gray-300 mb-8">Hi, I'm Alex. A passionate 3D artist specializing in character design, environments, and visual effects.</p> |
| <div class="flex space-x-4"> |
| <a href="#portfolio" class="px-8 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-lg font-medium transition transform hover:scale-105">View Portfolio</a> |
| <a href="#contact" class="px-8 py-3 border border-indigo-400 text-indigo-300 hover:bg-indigo-900 hover:bg-opacity-30 rounded-lg font-medium transition transform hover:scale-105">Hire Me</a> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <div class="relative w-64 h-64 md:w-80 md:h-80 lg:w-96 lg:h-96"> |
| <div class="absolute inset-0 bg-indigo-500 rounded-full opacity-20 blur-xl"></div> |
| <div class="relative card-3d bg-gray-800 rounded-2xl overflow-hidden shadow-2xl"> |
| <img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="3D Artwork" class="w-full h-full object-cover"> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="portfolio" class="py-20 bg-gray-800"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">My <span class="text-indigo-400">Portfolio</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-400">Explore my collection of 3D artworks, character designs, and animations</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="gallery-item bg-gray-900 rounded-xl overflow-hidden shadow-lg transition"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="3D Character" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-indigo-900 bg-opacity-50 opacity-0 hover:opacity-100 transition flex items-center justify-center"> |
| <button class="px-6 py-2 bg-indigo-600 rounded-full font-medium">View Project</button> |
| </div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Cyberpunk Character</h3> |
| <p class="text-gray-400">High-poly character design with detailed textures and rigging</p> |
| <div class="mt-4 flex space-x-2"> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Blender</span> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Substance Painter</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="gallery-item bg-gray-900 rounded-xl overflow-hidden shadow-lg transition"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="3D Environment" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-indigo-900 bg-opacity-50 opacity-0 hover:opacity-100 transition flex items-center justify-center"> |
| <button class="px-6 py-2 bg-indigo-600 rounded-full font-medium">View Project</button> |
| </div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Futuristic Cityscape</h3> |
| <p class="text-gray-400">Sci-fi environment with dynamic lighting and particle effects</p> |
| <div class="mt-4 flex space-x-2"> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Unreal Engine</span> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Maya</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="gallery-item bg-gray-900 rounded-xl overflow-hidden shadow-lg transition"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1639762681485-07447b2c5756?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="3D Product" class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-indigo-900 bg-opacity-50 opacity-0 hover:opacity-100 transition flex items-center justify-center"> |
| <button class="px-6 py-2 bg-indigo-600 rounded-full font-medium">View Project</button> |
| </div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Product Visualization</h3> |
| <p class="text-gray-400">High-end product render with realistic materials and lighting</p> |
| <div class="mt-4 flex space-x-2"> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Cinema 4D</span> |
| <span class="px-2 py-1 bg-gray-700 rounded text-xs">Redshift</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <button class="px-8 py-3 border border-indigo-400 text-indigo-300 hover:bg-indigo-900 hover:bg-opacity-30 rounded-lg font-medium transition transform hover:scale-105"> |
| View All Projects |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-gray-900"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/3 mb-10 md:mb-0 flex justify-center"> |
| <div class="relative w-64 h-64 md:w-80 md:h-80"> |
| <div class="absolute inset-0 bg-indigo-500 rounded-full opacity-20 blur-xl"></div> |
| <div class="relative rounded-full overflow-hidden shadow-2xl w-full h-full border-4 border-indigo-500"> |
| <img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Alex - 3D Artist" class="w-full h-full object-cover"> |
| </div> |
| </div> |
| </div> |
| <div class="md:w-2/3 md:pl-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">About <span class="text-indigo-400">Me</span></h2> |
| <p class="text-lg text-gray-300 mb-6"> |
| I'm Alex, a professional 3D artist with over 8 years of experience in the industry. My journey began when I first discovered 3D modeling in high school, and since then I've been obsessed with creating digital worlds and characters. |
| </p> |
| <p class="text-lg text-gray-300 mb-6"> |
| I've worked with major studios on game development, film VFX, and advertising projects. My specialty lies in creating visually stunning assets that tell a story and evoke emotion. |
| </p> |
| <p class="text-lg text-gray-300 mb-8"> |
| When I'm not crafting 3D art, you can find me exploring new technologies, teaching workshops, or hiking in nature to find inspiration for my next project. |
| </p> |
| <div class="flex flex-wrap gap-4"> |
| <div class="flex items-center"> |
| <div class="mr-3 text-indigo-400"> |
| <i class="fas fa-award text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">5+ Awards</h4> |
| <p class="text-sm text-gray-400">Industry recognition</p> |
| </div> |
| </div> |
| <div class="flex items-center"> |
| <div class="mr-3 text-indigo-400"> |
| <i class="fas fa-project-diagram text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">120+ Projects</h4> |
| <p class="text-sm text-gray-400">Completed works</p> |
| </div> |
| </div> |
| <div class="flex items-center"> |
| <div class="mr-3 text-indigo-400"> |
| <i class="fas fa-user-friends text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">50+ Clients</h4> |
| <p class="text-sm text-gray-400">Satisfied customers</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-900"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Client <span class="text-indigo-400">Testimonials</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-400">What industry professionals say about my work</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-gray-800 p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-bold">Sarah Johnson</h4> |
| <p class="text-sm text-indigo-400">Creative Director, PixelForge</p> |
| </div> |
| </div> |
| <p class="text-gray-300"> |
| "Alex's character designs brought our game to life. His attention to detail and understanding of anatomy is exceptional. We've worked with many artists, but Alex stands out for his creativity and professionalism." |
| </p> |
| <div class="mt-4 text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| |
| <div class="bg-gray-800 p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-bold">Michael Chen</h4> |
| <p class="text-sm text-indigo-400">VFX Supervisor, Nova Studios</p> |
| </div> |
| </div> |
| <p class="text-gray-300"> |
| "The environments Alex created for our film were breathtaking. He consistently delivered beyond expectations, even with tight deadlines. His ability to translate concepts into 3D is remarkable." |
| </p> |
| <div class="mt-4 text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| |
| <div class="bg-gray-800 p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Client" class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-bold">Emma Rodriguez</h4> |
| <p class="text-sm text-indigo-400">Product Manager, TechViz</p> |
| </div> |
| </div> |
| <p class="text-gray-300"> |
| "Our product visualizations have never looked better. Alex's renders captured every detail perfectly, helping us secure major clients. His technical expertise and artistic eye are a rare combination." |
| </p> |
| <div class="mt-4 text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star-half-alt"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-gray-800"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Get In <span class="text-indigo-400">Touch</span></h2> |
| <p class="max-w-2xl mx-auto text-gray-400">Have a project in mind? Let's create something amazing together</p> |
| </div> |
| |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> |
| <div> |
| <form class="space-y-6"> |
| <div> |
| <label for="name" class="block text-sm font-medium text-gray-300 mb-1">Your Name</label> |
| <input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 text-white" placeholder="John Doe"> |
| </div> |
| <div> |
| <label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email Address</label> |
| <input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 text-white" placeholder="john@example.com"> |
| </div> |
| <div> |
| <label for="subject" class="block text-sm font-medium text-gray-300 mb-1">Subject</label> |
| <input type="text" id="subject" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 text-white" placeholder="Project Inquiry"> |
| </div> |
| <div> |
| <label for="message" class="block text-sm font-medium text-gray-300 mb-1">Your Message</label> |
| <textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 text-white" placeholder="Tell me about your project..."></textarea> |
| </div> |
| <div> |
| <button type="submit" class="w-full px-6 py-3 bg-indigo-600 hover:bg-indigo-700 rounded-lg font-medium transition transform hover:scale-105"> |
| Send Message |
| </button> |
| </div> |
| </form> |
| </div> |
| |
| <div> |
| <div class="bg-gray-900 p-8 rounded-xl h-full"> |
| <h3 class="text-xl font-semibold mb-6 text-indigo-300">Contact Information</h3> |
| |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="text-indigo-400 mt-1 mr-4"> |
| <i class="fas fa-envelope text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Email</h4> |
| <p class="text-gray-400">contact@nexus3d.com</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="text-indigo-400 mt-1 mr-4"> |
| <i class="fas fa-phone-alt text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Phone</h4> |
| <p class="text-gray-400">+1 (555) 123-4567</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="text-indigo-400 mt-1 mr-4"> |
| <i class="fas fa-map-marker-alt text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Location</h4> |
| <p class="text-gray-400">San Francisco, CA</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-10"> |
| <h4 class="font-bold mb-4 text-indigo-300">Follow Me</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center text-indigo-300 hover:bg-indigo-600 hover:text-white transition"> |
| <i class="fab fa-artstation"></i> |
| </a> |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center text-indigo-300 hover:bg-indigo-600 hover:text-white transition"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center text-indigo-300 hover:bg-indigo-600 hover:text-white transition"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center text-indigo-300 hover:bg-indigo-600 hover:text-white transition"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <div class="mb-6 md:mb-0"> |
| <span class="text-2xl font-bold text-indigo-400">Nexus<span class="text-white">3D</span></span> |
| <p class="text-gray-400 mt-2">Bringing imagination to life through 3D art</p> |
| </div> |
| <div class="flex flex-col items-center md:items-end"> |
| <p class="text-gray-400 mb-4">© 2023 Nexus3D. All rights reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-indigo-300 transition">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-indigo-300 transition">Terms of Service</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-indigo-600 rounded-full flex items-center justify-center text-white shadow-lg transition opacity-0 invisible"> |
| <i class="fas fa-arrow-up"></i> |
| </button> |
|
|
| <script> |
| |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); |
| const mobileMenu = document.getElementById('mobile-menu'); |
| |
| mobileMenuButton.addEventListener('click', () => { |
| mobileMenu.classList.toggle('hidden'); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| const targetElement = document.querySelector(targetId); |
| |
| if (targetElement) { |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| |
| |
| mobileMenu.classList.add('hidden'); |
| } |
| }); |
| }); |
| |
| |
| const backToTopButton = document.getElementById('back-to-top'); |
| |
| window.addEventListener('scroll', () => { |
| if (window.pageYOffset > 300) { |
| backToTopButton.classList.remove('opacity-0', 'invisible'); |
| backToTopButton.classList.add('opacity-100', 'visible'); |
| } else { |
| backToTopButton.classList.remove('opacity-100', 'visible'); |
| backToTopButton.classList.add('opacity-0', 'invisible'); |
| } |
| }); |
| |
| backToTopButton.addEventListener('click', () => { |
| window.scrollTo({ |
| top: 0, |
| behavior: 'smooth' |
| }); |
| }); |
| |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Dipaf/3d" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |