jsonet's picture
Add 3 files
af553ca verified
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Development Process Guide</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>
.phase-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.phase-card:hover {
transform: translateY(-5px) rotateX(5deg);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 200px;
background-color: #4f46e5;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.progress-bar {
height: 6px;
transition: width 0.5s ease;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: scale(1.2);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<header class="bg-gradient-to-r from-indigo-600 to-purple-600 text-white shadow-lg">
<div class="container mx-auto px-4 py-8">
<div class="flex justify-between items-center">
<div>
<h1 class="text-4xl font-bold">Web Development Process</h1>
<p class="mt-2 text-lg opacity-90">A comprehensive guide from planning to deployment</p>
</div>
<div class="hidden md:block">
<div class="flex space-x-2">
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">HTML</span>
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">CSS</span>
<span class="px-3 py-1 bg-white bg-opacity-20 rounded-full text-sm">JavaScript</span>
</div>
</div>
</div>
</div>
</header>
<main class="container mx-auto px-4 py-8">
<!-- Progress Tracker -->
<div class="mb-12 bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Your Project Progress</h2>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Planning & Design</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Development Setup</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Backend Development</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Frontend Development</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Testing & Deployment</span>
<span class="text-sm font-medium text-gray-700">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="progress-bar bg-indigo-600 rounded-full h-2.5" style="width: 0%"></div>
</div>
</div>
</div>
<button id="updateProgressBtn" class="mt-6 px-6 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition">
Update Progress
</button>
</div>
<!-- Development Phases -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
<!-- Phase 0 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-indigo-100 p-4">
<div class="flex items-center">
<div class="bg-indigo-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">0</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Planning & Design</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Define project requirements and MVP</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Create wireframes and mockups</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Choose technology stack</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Design database schema</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-indigo-100 text-indigo-700 rounded-lg hover:bg-indigo-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 1 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-purple-100 p-4">
<div class="flex items-center">
<div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">1</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Development Setup</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Install development tools</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up version control</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Initialize project structure</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure environment</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-purple-100 text-purple-700 rounded-lg hover:bg-purple-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 2 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-blue-100 p-4">
<div class="flex items-center">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">2</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Backend Development</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up server framework</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Design and implement API</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Connect to database</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Implement authentication</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-blue-100 text-blue-700 rounded-lg hover:bg-blue-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 3 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-green-100 p-4">
<div class="flex items-center">
<div class="bg-green-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">3</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Frontend Development</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up frontend framework</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Develop UI components</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Implement routing</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Connect to backend API</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-green-100 text-green-700 rounded-lg hover:bg-green-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 4 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-yellow-100 p-4">
<div class="flex items-center">
<div class="bg-yellow-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">4</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Testing & Integration</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Write unit tests</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Perform integration testing</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Fix bugs</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Optimize performance</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-yellow-100 text-yellow-700 rounded-lg hover:bg-yellow-200 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Phase 5 -->
<div class="phase-card bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl">
<div class="bg-red-100 p-4">
<div class="flex items-center">
<div class="bg-red-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
<span class="font-bold">5</span>
</div>
<h3 class="text-xl font-semibold text-gray-800">Deployment</h3>
</div>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Choose hosting provider</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure production environment</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set up CI/CD pipeline</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Configure domain and SSL</span>
</li>
</ul>
<div class="mt-6">
<button class="px-4 py-2 bg-red-100 text-red-700 rounded-lg hover:bg-red-200 transition">
View Details
</button>
</div>
</div>
</div>
</div>
<!-- Technology Stack -->
<div class="bg-white rounded-xl shadow-md p-6 mb-12">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Technology Stack Options</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Backend -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-server mr-2 text-indigo-600"></i> Backend
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg" width="32" height="32" alt="Node.js">
</div>
<span class="tooltip-text">Node.js - JavaScript runtime</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" width="32" height="32" alt="Python">
</div>
<span class="tooltip-text">Python - Versatile language</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg" width="32" height="32" alt="Java">
</div>
<span class="tooltip-text">Java - Enterprise solution</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/php/php-original.svg" width="32" height="32" alt="PHP">
</div>
<span class="tooltip-text">PHP - Web-focused language</span>
</div>
</div>
</div>
<!-- Frontend -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-desktop mr-2 text-blue-600"></i> Frontend
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" width="32" height="32" alt="React">
</div>
<span class="tooltip-text">React - Component-based UI</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vuejs/vuejs-original.svg" width="32" height="32" alt="Vue.js">
</div>
<span class="tooltip-text">Vue.js - Progressive framework</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/angularjs/angularjs-original.svg" width="32" height="32" alt="Angular">
</div>
<span class="tooltip-text">Angular - Full-featured framework</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/svelte/svelte-original.svg" width="32" height="32" alt="Svelte">
</div>
<span class="tooltip-text">Svelte - Compiler approach</span>
</div>
</div>
</div>
<!-- Database -->
<div class="border border-gray-200 rounded-lg p-4">
<h3 class="text-lg font-medium text-gray-800 mb-3 flex items-center">
<i class="fas fa-database mr-2 text-green-600"></i> Database
</h3>
<div class="flex flex-wrap gap-3">
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" width="32" height="32" alt="PostgreSQL">
</div>
<span class="tooltip-text">PostgreSQL - Powerful SQL database</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original.svg" width="32" height="32" alt="MySQL">
</div>
<span class="tooltip-text">MySQL - Popular SQL database</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-original.svg" width="32" height="32" alt="MongoDB">
</div>
<span class="tooltip-text">MongoDB - NoSQL document store</span>
</div>
<div class="tooltip">
<div class="tech-icon bg-gray-100 p-2 rounded-lg">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/redis/redis-original.svg" width="32" height="32" alt="Redis">
</div>
<span class="tooltip-text">Redis - In-memory data store</span>
</div>
</div>
</div>
</div>
</div>
<!-- Checklist -->
<div class="bg-white rounded-xl shadow-md p-6 mb-12">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Development Checklist</h2>
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<h3 class="text-lg font-medium text-gray-800 mb-3">Planning Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Define project requirements</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Create wireframes</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Choose technology stack</span>
</label>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<h3 class="text-lg font-medium text-gray-800 mb-3">Development Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Set up development environment</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Implement backend API</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Develop frontend components</span>
</label>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-3">Deployment Phase</h3>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Configure production environment</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Set up CI/CD pipeline</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-indigo-600 rounded">
<span class="ml-2 text-gray-700">Monitor application performance</span>
</label>
</div>
</div>
</div>
</div>
<!-- Resources -->
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Helpful Resources</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<a href="https://developer.mozilla.org" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-globe text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">MDN Web Docs</h3>
</div>
<p class="text-gray-600">Comprehensive documentation for HTML, CSS, and JavaScript.</p>
</div>
</a>
<a href="https://tailwindcss.com" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-paint-brush text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">Tailwind CSS</h3>
</div>
<p class="text-gray-600">Utility-first CSS framework for rapid UI development.</p>
</div>
</a>
<a href="https://dev.to" target="_blank" class="group">
<div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 hover:bg-indigo-50 transition">
<div class="flex items-center mb-3">
<i class="fas fa-newspaper text-indigo-600 text-xl mr-3"></i>
<h3 class="text-lg font-medium text-gray-800 group-hover:text-indigo-700">DEV Community</h3>
</div>
<p class="text-gray-600">Community of developers sharing knowledge and experiences.</p>
</div>
</a>
</div>
</div>
</main>
<footer class="bg-gray-800 text-white py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h3 class="text-xl font-bold">Web Development Process</h3>
<p class="text-gray-400 mt-1">A guide to building modern web applications</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
<p>&copy; 2023 Web Development Guide. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Update progress bars
document.getElementById('updateProgressBtn').addEventListener('click', function() {
const progressBars = document.querySelectorAll('.progress-bar');
const progressTexts = document.querySelectorAll('.text-sm.font-medium.text-gray-700:not(:first-child)');
progressBars.forEach((bar, index) => {
const randomProgress = Math.floor(Math.random() * 100);
bar.style.width = `${randomProgress}%`;
// Update the text next to the progress bar
if (progressTexts[index]) {
progressTexts[index].textContent = `${randomProgress}%`;
}
});
// Change button text temporarily
this.textContent = 'Progress Updated!';
setTimeout(() => {
this.textContent = 'Update Progress';
}, 2000);
});
// Toggle checklist items
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.addEventListener('change', function() {
const label = this.nextElementSibling;
if (this.checked) {
label.classList.add('line-through', 'text-gray-400');
} else {
label.classList.remove('line-through', 'text-gray-400');
}
});
});
// Add hover effect to phase cards
const phaseCards = document.querySelectorAll('.phase-card');
phaseCards.forEach(card => {
card.addEventListener('mouseenter', function() {
const icon = this.querySelector('.fa-check-circle');
if (icon) {
icon.classList.add('animate-bounce');
}
});
card.addEventListener('mouseleave', function() {
const icon = this.querySelector('.fa-check-circle');
if (icon) {
icon.classList.remove('animate-bounce');
}
});
});
</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=jsonet/web-development-tracking" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>