| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Deniz Efe Karacakaya | Personal Website</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> |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
| |
| body { |
| font-family: 'Poppins', sans-serif; |
| scroll-behavior: smooth; |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); |
| } |
| |
| .text-gradient { |
| background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .card-hover:hover { |
| transform: translateY(-10px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| |
| .timeline-item:not(:last-child)::after { |
| content: ''; |
| position: absolute; |
| left: 50%; |
| bottom: -20px; |
| transform: translateX(-50%); |
| width: 2px; |
| height: 20px; |
| background-color: #e5e7eb; |
| } |
| |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| |
| .floating { |
| animation: float 3s ease-in-out infinite; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="fixed w-full bg-white shadow-md z-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <a href="#" class="text-xl font-bold text-gradient">DEK</a> |
| </div> |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#home" class="text-gray-700 hover:text-indigo-600 transition">Home</a> |
| <a href="#about" class="text-gray-700 hover:text-indigo-600 transition">About</a> |
| <a href="#experience" class="text-gray-700 hover:text-indigo-600 transition">Experience</a> |
| <a href="#projects" class="text-gray-700 hover:text-indigo-600 transition">Projects</a> |
| <a href="#contact" class="text-gray-700 hover:text-indigo-600 transition">Contact</a> |
| </div> |
| <div class="md:hidden flex items-center"> |
| <button id="menu-btn" class="text-gray-700"> |
| <i class="fas fa-bars text-xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="hidden md:hidden bg-white py-4 px-4 shadow-lg"> |
| <div class="flex flex-col space-y-4"> |
| <a href="#home" class="text-gray-700 hover:text-blue-600 transition">Home</a> |
| <a href="#about" class="text-gray-700 hover:text-blue-600 transition">About</a> |
| <a href="#experience" class="text-gray-700 hover:text-blue-600 transition">Experience</a> |
| <a href="#projects" class="text-gray-700 hover:text-blue-600 transition">Projects</a> |
| <a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 gradient-bg text-white"> |
| <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/2 mb-10 md:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-4">Deniz Efe Karacakaya</h1> |
| <h2 class="text-2xl md:text-3xl font-semibold mb-6">AI & Data Engineering Student</h2> |
| <p class="text-lg mb-8">Building innovative solutions and pushing the boundaries of technology.</p> |
| <div class="flex space-x-4"> |
| <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition">Contact Me</a> |
| <a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition">View Projects</a> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <div class="relative"> |
| <div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-white bg-opacity-20 flex items-center justify-center floating"> |
| <img src="https://media.licdn.com/dms/image/D4D03AQG6YzY2YJ8X5Q/profile-displayphoto-shrink_400_400/0/1700211401171?e=1717027200&v=beta&t=7v5Yh8QYQ3Z3wQ7W5Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q" |
| alt="Deniz Efe Karacakaya" |
| class="w-60 h-60 md:w-72 md:h-72 rounded-full object-cover border-4 border-white"> |
| </div> |
| <div class="absolute -bottom-5 -right-5 bg-white text-blue-600 px-4 py-2 rounded-full shadow-lg"> |
| <span class="font-bold">Open to Work</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-16 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gradient">About Me</h2> |
| |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/3 mb-8 md:mb-0 flex justify-center"> |
| <img src="file:///C:/Users/deniz/Desktop/WhatsApp%20G%C3%B6rsel%202025-07-08%20saat%2014.46.19_c84fa0a3.jpg" |
| alt="Deniz Efe Karacakaya" |
| class="w-48 h-48 rounded-full object-cover border-4 border-blue-100"> |
| </div> |
| <div class="md:w-2/3 md:pl-12"> |
| <p class="text-lg text-gray-700 mb-6"> |
| I am Deniz Efe Karacakaya, a passionate Artificial Intelligence and Data Engineering student at Akdeniz University. |
| I have a strong interest in machine learning, deep learning, and data analysis, with hands-on experience in various AI projects. |
| </p> |
| <p class="text-lg text-gray-700 mb-6"> |
| My technical skills span across programming languages and frameworks used in AI development and data engineering. |
| I'm constantly expanding my knowledge in these fields through academic studies and personal projects. |
| </p> |
| |
| <div class="mb-8"> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Skills & Technologies</h3> |
| <div class="flex flex-wrap gap-3"> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Python</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">TensorFlow</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">PyTorch</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Scikit-learn</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Pandas</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">NumPy</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">SQL</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Data Analysis</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Machine Learning</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Deep Learning</span> |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Git</span> |
| </div> |
| </div> |
| |
| <div class="flex space-x-4"> |
| <a href="https://www.linkedin.com/in/deniz-efe-karacakaya-44858531b" target="_blank" class="text-blue-600 hover:text-blue-800"> |
| <i class="fab fa-linkedin text-2xl"></i> |
| </a> |
| <a href="https://github.com/Denizfe" target="_blank" class="text-gray-800 hover:text-black"> |
| <i class="fab fa-github text-2xl"></i> |
| </a> |
| <a href="https://huggingface.co/Denizfe" target="_blank" class="text-yellow-600 hover:text-yellow-800"> |
| <i class="fab fa-huggingface text-2xl"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="experience" class="py-16 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gradient">My Journey</h2> |
| |
| <div class="relative"> |
| |
| <div class="space-y-8 md:space-y-0"> |
| |
| <div class="relative timeline-item"> |
| <div class="md:flex"> |
| <div class="md:w-1/2 md:pr-8 md:text-right mb-4 md:mb-0"> |
| <div class="bg-white p-6 rounded-lg shadow-md card-hover transition duration-300"> |
| <h3 class="text-xl font-bold text-blue-600 mb-2">Artificial Intelligence and Data Engineering</h3> |
| <p class="text-gray-600 mb-2">Akdeniz University</p> |
| <p class="text-gray-500">2024 - Present</p> |
| </div> |
| </div> |
| <div class="hidden md:block md:w-1/2"></div> |
| </div> |
| </div> |
| |
| |
| <div class="relative"> |
| <div class="md:flex"> |
| <div class="hidden md:block md:w-1/2"></div> |
| <div class="md:w-1/2 md:pl-8"> |
| <div class="bg-white p-6 rounded-lg shadow-md card-hover transition duration-300"> |
| <h3 class="text-xl font-bold text-blue-600 mb-2">High School Diploma</h3> |
| <p class="text-gray-600 mb-2">Adem Tolunay Anatolian High School</p> |
| <p class="text-gray-500">2020 - 2024</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="hidden md:block absolute left-1/2 top-0 bottom-0 w-1 bg-blue-200 transform -translate-x-1/2"></div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="projects" class="py-16 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gradient">Featured Projects</h2> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300"> |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" |
| alt="Project 1" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2 text-gray-800">E-commerce Platform</h3> |
| <p class="text-gray-600 mb-4">A full-stack e-commerce solution with payment integration and inventory management.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">React</span> |
| <span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">Node.js</span> |
| <span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">MongoDB</span> |
| </div> |
| <a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a> |
| </div> |
| </div> |
| |
| |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300"> |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" |
| alt="Project 2" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2 text-gray-800">Task Management App</h3> |
| <p class="text-gray-600 mb-4">A productivity application for teams to collaborate and manage projects efficiently.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Vue.js</span> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Firebase</span> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">TailwindCSS</span> |
| </div> |
| <a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a> |
| </div> |
| </div> |
| |
| |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300"> |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" |
| alt="Project 3" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2 text-gray-800">AI Chatbot</h3> |
| <p class="text-gray-600 mb-4">A conversational AI assistant built with natural language processing capabilities.</p> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Python</span> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">TensorFlow</span> |
| <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">NLP</span> |
| </div> |
| <a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-block bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition"> |
| View All Projects |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-16 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <h2 class="text-3xl font-bold text-center mb-12 text-gradient">Get In Touch</h2> |
| |
| <div class="flex flex-col md:flex-row"> |
| <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> |
| <h3 class="text-2xl font-semibold mb-4 text-gray-800">Let's Connect</h3> |
| <p class="text-gray-600 mb-6"> |
| I'm always open to discussing new projects, creative ideas or opportunities to be part of your vision. |
| </p> |
| |
| <div class="space-y-4"> |
| <div class="flex items-center"> |
| <div class="bg-indigo-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-envelope text-indigo-600"></i> |
| </div> |
| <div> |
| <p class="text-gray-500">Email</p> |
| <a href="mailto:denizefekaracakaya14@gmail.com" class="font-medium hover:text-indigo-600">denizefekaracakaya14@gmail.com</a> |
| </div> |
| </div> |
| |
| <div class="flex items-center"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-phone text-blue-600"></i> |
| </div> |
| <div> |
| <p class="text-gray-500">Phone</p> |
| <p class="font-medium">+90 555 123 4567</p> |
| </div> |
| </div> |
| |
| <div class="flex items-center"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-map-marker-alt text-blue-600"></i> |
| </div> |
| <div> |
| <p class="text-gray-500">Location</p> |
| <p class="font-medium">Antalya, Türkiye</p> |
| </div> |
| </div> |
|
|
| <div class="flex items-center"> |
| <div class="bg-orange-100 p-3 rounded-full mr-4"> |
| <i class="fab fa-kaggle text-orange-600"></i> |
| </div> |
| <div> |
| <p class="text-gray-500">Kaggle</p> |
| <a href="https://www.kaggle.com/denizefekaracakaya" target="_blank" class="font-medium hover:text-orange-600">denizefekaracakaya</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="md:w-1/2"> |
| <form class="bg-white p-6 rounded-lg shadow-md"> |
| <div class="mb-4"> |
| <label for="name" class="block text-gray-700 mb-2">Name</label> |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| |
| <div class="mb-4"> |
| <label for="email" class="block text-gray-700 mb-2">Email</label> |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| |
| <div class="mb-4"> |
| <label for="subject" class="block text-gray-700 mb-2">Subject</label> |
| <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> |
| </div> |
| |
| <div class="mb-4"> |
| <label for="message" class="block text-gray-700 mb-2">Message</label> |
| <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> |
| </div> |
| |
| <button type="submit" class="w-full bg-indigo-600 text-white py-3 rounded-lg font-medium hover:bg-indigo-700 transition"> |
| Send Message |
| </button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-800 text-white py-8"> |
| <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-4 md:mb-0"> |
| <a href="#" class="text-xl font-bold">Deniz Efe Karacakaya</a> |
| <p class="text-gray-400 mt-1">Software Developer & Tech Enthusiast</p> |
| </div> |
| |
| <div class="flex space-x-6"> |
| <a href="https://www.linkedin.com/in/deniz-efe-karacakaya-44858531b" target="_blank" class="text-gray-400 hover:text-white transition"> |
| <i class="fab fa-linkedin text-xl"></i> |
| </a> |
| <a href="https://github.com/Denizfe" target="_blank" class="text-gray-400 hover:text-white transition"> |
| <i class="fab fa-github text-xl"></i> |
| </a> |
| <a href="https://huggingface.co/Denizfe" target="_blank" class="text-gray-400 hover:text-white transition"> |
| <i class="fab fa-huggingface text-xl"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> |
| <p>© 2023 Deniz Efe Karacakaya. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| const menuBtn = document.getElementById('menu-btn'); |
| const mobileMenu = document.getElementById('mobile-menu'); |
| |
| menuBtn.addEventListener('click', () => { |
| mobileMenu.classList.toggle('hidden'); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| mobileMenu.classList.add('hidden'); |
| |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
| |
| |
| window.addEventListener('scroll', function() { |
| const nav = document.querySelector('nav'); |
| if (window.scrollY > 10) { |
| nav.classList.add('shadow-lg'); |
| } else { |
| nav.classList.remove('shadow-lg'); |
| } |
| }); |
| </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=Denizfe/mywebsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |