my-website / index.html
Canersr's picture
olmadı mobil görünümde site kötü gözüküyor o yüzden fotoğrafı başka bi yere al - Follow Up Deployment
09baa2d verified
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Caner Sürmelioğlu | Yazılım Geliştirici</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-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.tech-badge {
transition: all 0.3s ease;
}
.tech-badge:hover {
transform: translateY(-3px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
.hero-image {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.card-hover {
transition: all 0.3s ease;
}
.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);
}
</style>
</head>
<body class="bg-gray-950 text-white">
<!-- Navigation -->
<nav class="bg-gray-900 shadow-sm fixed w-full z-10">
<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-2xl font-bold bg-gradient-to-r from-blue-500 to-purple-600 text-white px-3 py-1 rounded-lg">CS</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#about" class="nav-link text-white hover:text-gray-300">Hakkımda</a>
<a href="#skills" class="nav-link text-white hover:text-gray-300">Yetenekler</a>
<a href="#goals" class="nav-link text-white hover:text-gray-300">Hedefler</a>
<a href="#certificates" class="nav-link text-white hover:text-gray-300">Sertifikalar</a>
<a href="#contact" class="nav-link text-white hover:text-gray-300">İletişim</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-gray-900 shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-gray-300 hover:bg-gray-700">Hakkımda</a>
<a href="#skills" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-gray-300 hover:bg-gray-700">Yetenekler</a>
<a href="#goals" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-gray-300 hover:bg-gray-700">Hedefler</a>
<a href="#certificates" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-gray-300 hover:bg-gray-700">Sertifikalar</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:text-gray-300 hover:bg-gray-700">İletişim</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-24 pb-12 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="order-2 md:order-1 w-full md:w-1/2 mt-8 md:mt-0">
<h1 class="text-3xl md:text-5xl font-bold mb-4">Merhaba, Ben <span class="gradient-text">Caner Sürmelioğlu</span></h1>
<h2 class="text-xl md:text-3xl font-semibold text-gray-300 mb-6">Yazılım Geliştirici & AI Meraklısı</h2>
<p class="text-base md:text-lg text-gray-300 mb-8">Antalya merkezli bir yazılım geliştiriciyim. Teknolojiye tutkuyla bağlı, problem çözmeyi seven ve sürekli öğrenmeye açık bir geliştiriciyim.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition text-center">İletişime Geç</a>
<a href="#about" class="border border-gray-300 text-gray-700 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition text-center">Daha Fazla Bilgi</a>
</div>
</div>
<div class="order-1 md:order-2 w-full md:w-1/2 flex justify-center">
<img src="YOUR_PHOTO_URL_HERE" alt="Caner Sürmelioğlu" class="hero-image rounded-full shadow-xl w-40 h-40 md:w-64 md:h-64 object-cover border-4 border-white">
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gray-900 rounded-xl shadow-sm mt-10">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold gradient-text inline-block">Hakkımda</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mt-2 rounded-full"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-full">
<p class="text-lg text-white mb-4">Ben Caner Sürmelioğlu, Antalya merkezli bir Yazılım Geliştiriciyim. Akdeniz Üniversitesi Bilgisayar Programcılığı bölümünden mezun oldum ve yazılım dünyasında kendimi sürekli geliştiren, teknolojiye tutkuyla bağlı bir geliştiriciyim.</p>
<p class="text-lg text-white mb-4">Yazılım geliştirmeye duyduğum ilgi sayesinde şimdiye kadar hem masaüstü hem de web tabanlı birçok projeye imza attım. Özellikle C, C#, Python, Visual Basic, JavaScript ve SQL gibi dillerle çalıştım; HTML, CSS, Delphi ve WordPress gibi teknolojilerle kullanıcı dostu arayüzler geliştirdim.</p>
<p class="text-lg text-white mb-4">Son zamanlarda Python diliyle yapay zeka ve makine öğrenmesi alanlarına yöneldim ve bu teknolojileri projelerimde aktif şekilde kullanmaya başladım.</p>
<p class="text-lg text-white">Kendimi sadece bir geliştirici değil; aynı zamanda problem çözücü, araştırmacı ve takım oyuncusu olarak tanımlıyorum. Kod yazarken detaylara önem veren, öğrenmeye açık ve yeni teknolojileri yakından takip eden biriyim.</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto mt-10">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold gradient-text inline-block">Yetenekler & Teknolojiler</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mt-2 rounded-full"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Programming Languages -->
<div class="bg-gray-800 p-6 rounded-xl shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-code text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Programlama Dilleri</h3>
</div>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">C</span>
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">C#</span>
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">Python</span>
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">Visual Basic</span>
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">JavaScript</span>
<span class="tech-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">SQL</span>
</div>
</div>
<!-- Web Technologies -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-globe text-purple-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Web Teknolojileri</h3>
</div>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm font-medium">HTML</span>
<span class="tech-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm font-medium">CSS</span>
<span class="tech-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm font-medium">WordPress</span>
</div>
</div>
<!-- Other Skills -->
<div class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-tools text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Diğer Yetenekler</h3>
</div>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-medium">Delphi</span>
<span class="tech-badge bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-medium">Git</span>
<span class="tech-badge bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-medium">Adobe Photoshop</span>
<span class="tech-badge bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-medium">Illustrator</span>
</div>
</div>
</div>
</section>
<!-- Goals Section -->
<section id="goals" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gray-900 rounded-xl shadow-sm mt-10">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold gradient-text inline-block">Hedeflerim</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mt-2 rounded-full"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-blue-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-project-diagram text-blue-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Gerçek Dünya Projeleri</h3>
</div>
<p class="text-gray-700">Gerçek dünya problemlerine çözüm üreten projelerde aktif rol almak ve katkı sağlamak.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-purple-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-robot text-purple-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Uzmanlaşma</h3>
</div>
<p class="text-gray-700">Backend, Python ve Yapay Zeka alanlarında derinlemesine bilgi sahibi olmak ve uzmanlaşmak.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-green-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fab fa-github text-green-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Açık Kaynak</h3>
</div>
<p class="text-gray-700">Açık kaynak projelere katkıda bulunmak ve topluluğa destek olmak.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-yellow-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-2 rounded-full mr-4">
<i class="fas fa-laptop-house text-yellow-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Uzaktan Çalışma</h3>
</div>
<p class="text-gray-700">Uzaktan veya hibrit takımlarla verimli şekilde çalışabilecek deneyim kazanmak.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-red-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-red-100 p-2 rounded-full mr-4">
<i class="fas fa-chart-line text-red-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Kariyer</h3>
</div>
<p class="text-gray-700">Yazılım alanında kalıcı ve güçlü bir kariyer inşa etmek.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg border-l-4 border-indigo-500 card-hover">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-graduation-cap text-indigo-600"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800">Sürekli Öğrenme</h3>
</div>
<p class="text-gray-700">Yeni teknolojileri öğrenmeye ve kendimi geliştirmeye devam etmek.</p>
</div>
</div>
</section>
<!-- Certificates Section -->
<section id="certificates" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto mt-10">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold gradient-text inline-block">Sertifikalar</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mt-2 rounded-full"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-800 p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="bg-blue-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-certificate text-blue-600"></i>
</div>
<h3 class="text-lg font-semibold mb-2">C Programlama Dili</h3>
<p class="text-gray-600 text-sm">BTK Akademi</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="bg-purple-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-certificate text-purple-600"></i>
</div>
<h3 class="text-lg font-semibold mb-2 text-white">HTML5 ile Web Geliştirme</h3>
<p class="text-gray-300 text-sm">BTK Akademi</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="bg-green-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-certificate text-green-600"></i>
</div>
<h3 class="text-lg font-semibold mb-2 text-white">CSS Temelleri</h3>
<p class="text-gray-300 text-sm">BTK Akademi</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="bg-red-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i class="fas fa-certificate text-red-600"></i>
</div>
<h3 class="text-lg font-semibold mb-2 text-white">Siber Güvenliğe Giriş</h3>
<p class="text-gray-300 text-sm">BTK Akademi</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gray-900 rounded-xl shadow-sm mt-10">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold gradient-text inline-block">İletişim</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mt-2 rounded-full"></div>
</div>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<div class="bg-gray-800 p-6 rounded-lg mb-6">
<h3 class="text-xl font-semibold mb-4">Bana Ulaşın</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">E-posta</h4>
<a href="mailto:canersurmelioglu@gmail.com" class="text-gray-600 hover:text-blue-600">canersurmelioglu@gmail.com</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-phone text-green-600"></i>
</div>
<div>
<h4 class="font-medium">Telefon</h4>
<a href="tel:+905061717595" class="text-gray-600 hover:text-green-600">+90 (506) 171 75 95</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-purple-600"></i>
</div>
<div>
<h4 class="font-medium">Lokasyon</h4>
<p class="text-gray-600">Muratpaşa / Antalya</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-gray-800 p-2 rounded-full mr-4">
<i class="fab fa-github text-white"></i>
</div>
<div>
<h4 class="font-medium">GitHub</h4>
<a href="https://github.com/Canersr" target="_blank" class="text-gray-600 hover:text-gray-800">github.com/Canersr</a>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-4">Sosyal Medya</h3>
<div class="flex space-x-4">
<a href="#" class="bg-blue-600 text-white p-3 rounded-full hover:bg-blue-700 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-blue-400 text-white p-3 rounded-full hover:bg-blue-500 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-800 text-white p-3 rounded-full hover:bg-gray-900 transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-red-600 text-white p-3 rounded-full hover:bg-red-700 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-800 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-4">Mesaj Gönder</h3>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Adınız</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">E-posta</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">Konu</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">Mesajınız</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="bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition w-full">Gönder</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8 mt-16">
<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-2xl font-bold bg-gradient-to-r from-blue-500 to-purple-600 text-white px-3 py-1 rounded-lg">CS</a>
<p class="text-gray-400 mt-1">Yazılım Geliştirici & AI Meraklısı</p>
</div>
<div class="flex space-x-6">
<a href="#about" class="text-gray-400 hover:text-white transition">Hakkımda</a>
<a href="#skills" class="text-gray-400 hover:text-white transition">Yetenekler</a>
<a href="#contact" class="text-gray-400 hover:text-white transition">İletişim</a>
</div>
</div>
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
<p>&copy; 2023 Caner Sürmelioğlu. Tüm hakları saklıdır.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu when clicking on a link
const mobileLinks = document.querySelectorAll('#mobile-menu a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
// Add active class to nav links when scrolling
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('.nav-link');
window.addEventListener('scroll', () => {
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= sectionTop - 300) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href').includes(current)) {
link.classList.add('active');
}
});
});
// Smooth scrolling for all links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
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=Canersr/my-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>