Spaces:
Running
Running
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Liens Utiles</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-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); | |
} | |
.category-title { | |
position: relative; | |
display: inline-block; | |
} | |
.category-title::after { | |
content: ''; | |
position: absolute; | |
bottom: -5px; | |
left: 0; | |
width: 100%; | |
height: 3px; | |
background: linear-gradient(90deg, #3b82f6, #8b5cf6); | |
border-radius: 3px; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 font-sans"> | |
<header class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-8 shadow-lg"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<div class="mb-6 md:mb-0"> | |
<h1 class="text-3xl md:text-4xl font-bold">Liens Utiles</h1> | |
<p class="mt-2 text-blue-100">Toutes vos ressources en un seul endroit</p> | |
</div> | |
<div class="relative w-full md:w-64"> | |
<input type="text" placeholder="Rechercher un lien..." | |
class="w-full py-2 px-4 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-blue-400"> | |
<button class="absolute right-3 top-2 text-gray-500"> | |
<i class="fas fa-search"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</header> | |
<main class="container mx-auto px-4 py-8"> | |
<section class="mb-12"> | |
<h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Réseaux Sociaux</h2> | |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<a href="https://facebook.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-4 rounded-full mb-4"> | |
<i class="fab fa-facebook text-blue-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">Facebook</h3> | |
<p class="text-gray-500 text-center mt-2">Réseau social pour rester connecté</p> | |
</a> | |
<a href="https://twitter.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-4 rounded-full mb-4"> | |
<i class="fab fa-twitter text-blue-400 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">Twitter</h3> | |
<p class="text-gray-500 text-center mt-2">Actualités et discussions en temps réel</p> | |
</a> | |
<a href="https://linkedin.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-4 rounded-full mb-4"> | |
<i class="fab fa-linkedin text-blue-700 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">LinkedIn</h3> | |
<p class="text-gray-500 text-center mt-2">Réseau professionnel</p> | |
</a> | |
<a href="https://instagram.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-pink-100 p-4 rounded-full mb-4"> | |
<i class="fab fa-instagram text-pink-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">Instagram</h3> | |
<p class="text-gray-500 text-center mt-2">Partage de photos et vidéos</p> | |
</a> | |
</div> | |
</section> | |
<section class="mb-12"> | |
<h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Outils de Productivité</h2> | |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
<a href="https://drive.google.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-green-100 p-3 rounded-lg mr-4"> | |
<i class="fab fa-google-drive text-green-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Google Drive</h3> | |
<p class="text-gray-500 mt-1">Stockage et partage de fichiers</p> | |
</div> | |
</a> | |
<a href="https://trello.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
<i class="fab fa-trello text-blue-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Trello</h3> | |
<p class="text-gray-500 mt-1">Gestion de projets en équipe</p> | |
</div> | |
</a> | |
<a href="https://slack.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-purple-100 p-3 rounded-lg mr-4"> | |
<i class="fab fa-slack text-purple-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Slack</h3> | |
<p class="text-gray-500 mt-1">Communication d'équipe</p> | |
</div> | |
</a> | |
<a href="https://notion.so" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-gray-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-file-alt text-gray-700 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Notion</h3> | |
<p class="text-gray-500 mt-1">Espace de travail tout-en-un</p> | |
</div> | |
</a> | |
<a href="https://zoom.us" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-video text-blue-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Zoom</h3> | |
<p class="text-gray-500 mt-1">Visioconférence et réunions</p> | |
</div> | |
</a> | |
<a href="https://calendar.google.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-red-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-calendar-alt text-red-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Google Agenda</h3> | |
<p class="text-gray-500 mt-1">Gestion du temps et rendez-vous</p> | |
</div> | |
</a> | |
</div> | |
</section> | |
<section class="mb-12"> | |
<h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Développement</h2> | |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<a href="https://github.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-gray-800 p-4 rounded-full mb-4"> | |
<i class="fab fa-github text-white text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">GitHub</h3> | |
<p class="text-gray-500 text-center mt-2">Plateforme de développement collaboratif</p> | |
</a> | |
<a href="https://stackoverflow.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-orange-100 p-4 rounded-full mb-4"> | |
<i class="fab fa-stack-overflow text-orange-500 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">Stack Overflow</h3> | |
<p class="text-gray-500 text-center mt-2">Questions et réponses pour développeurs</p> | |
</a> | |
<a href="https://codepen.io" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-black p-4 rounded-full mb-4"> | |
<i class="fab fa-codepen text-white text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">CodePen</h3> | |
<p class="text-gray-500 text-center mt-2">Environnement de développement front-end</p> | |
</a> | |
<a href="https://dev.to" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover"> | |
<div class="bg-gray-100 p-4 rounded-full mb-4"> | |
<i class="fas fa-laptop-code text-gray-800 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-gray-800">DEV Community</h3> | |
<p class="text-gray-500 text-center mt-2">Partage de connaissances entre développeurs</p> | |
</a> | |
</div> | |
</section> | |
<section class="mb-12"> | |
<h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Apprentissage</h2> | |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
<a href="https://coursera.org" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-graduation-cap text-blue-700 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Coursera</h3> | |
<p class="text-gray-500 mt-1">Cours en ligne de grandes universités</p> | |
</div> | |
</a> | |
<a href="https://udemy.com" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-purple-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-chalkboard-teacher text-purple-700 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Udemy</h3> | |
<p class="text-gray-500 mt-1">Cours sur divers sujets</p> | |
</div> | |
</a> | |
<a href="https://khanacademy.org" target="_blank" | |
class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover"> | |
<div class="bg-teal-100 p-3 rounded-lg mr-4"> | |
<i class="fas fa-atom text-teal-600 text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Khan Academy</h3> | |
<p class="text-gray-500 mt-1">Apprentissage gratuit pour tous</p> | |
</div> | |
</a> | |
</div> | |
</section> | |
</main> | |
<footer class="bg-gray-800 text-white py-8"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<div class="mb-6 md:mb-0"> | |
<h2 class="text-xl font-bold mb-2">Liens Utiles</h2> | |
<p class="text-gray-400">Toutes vos ressources en un seul endroit</p> | |
</div> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
<i class="fab fa-twitter text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
<i class="fab fa-facebook text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
<i class="fab fa-instagram text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
<i class="fab fa-github text-xl"></i> | |
</a> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
<p>© 2023 Liens Utiles. Tous droits réservés.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Animation au chargement de la page | |
document.addEventListener('DOMContentLoaded', () => { | |
const cards = document.querySelectorAll('.card-hover'); | |
cards.forEach((card, index) => { | |
setTimeout(() => { | |
card.style.opacity = '1'; | |
card.style.transform = 'translateY(0)'; | |
}, 100 * index); | |
}); | |
}); | |
// Fonction de recherche | |
const searchInput = document.querySelector('input'); | |
searchInput.addEventListener('input', (e) => { | |
const searchTerm = e.target.value.toLowerCase(); | |
const cards = document.querySelectorAll('.card-hover'); | |
cards.forEach(card => { | |
const title = card.querySelector('h3').textContent.toLowerCase(); | |
const description = card.querySelector('p').textContent.toLowerCase(); | |
if (title.includes(searchTerm) || description.includes(searchTerm)) { | |
card.style.display = 'flex'; | |
} else { | |
card.style.display = 'none'; | |
} | |
}); | |
}); | |
</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=jerome-dreville/arcs-liens" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |