It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://qel.fr/

  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.  <head>
  4.    <meta charset="utf-8" />
  5.    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.    <title>Qel.fr - Trouvez votre emploi idéal</title>
  8.    <meta name="description" content="Moteur de recherche d'offres d'emploi. Trouvez des opportunités près de chez vous ou en télétravail." />
  9.    <meta name="robots" content="noodp" />
  10.    <meta property="og:site_name" content="Qel.fr - Recherche d'emplois" />
  11.    <meta property="og:type" content="website" />
  12.    <meta property="og:title" content="Qel.fr - Trouvez votre emploi idéal" />
  13.    <meta property="og:description" content="Moteur de recherche d'offres d'emploi. Trouvez des opportunités près de chez vous ou en télétravail." />
  14.    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
  15.  
  16.    <!-- Tailwind CSS -->
  17.    <script src="https://cdn.tailwindcss.com"></script>
  18.    <!-- Font Awesome for icons -->
  19.    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
  20.  </head>
  21.  
  22.  <body class="flex flex-col min-h-screen bg-gray-50 font-sans antialiased">
  23.    <!-- Header -->
  24.    <header class="bg-white shadow-md sticky top-0 z-10">
  25.      <div class="container mx-auto px-6 py-4 flex justify-between items-center">
  26.        <div class="text-2xl font-bold text-indigo-600">
  27.          <a href="https://qel.fr" class="bg-gradient-to-r from-teal-500 via-cyan-400 to-teal-500 bg-clip-text text-transparent">Qel.fr - Recherche d'emplois</a>
  28.        </div>
  29.        <nav class="hidden md:flex space-x-6">
  30.          <a href="https://qel.fr" class="text-gray-700 hover:text-indigo-600 transition">Accueil</a>
  31.          <a href="https://qel.fr/jobs" class="text-gray-700 hover:text-indigo-600 transition">Trouver un emploi</a>
  32.          <a href="https://qel.fr/about" class="text-gray-700 hover:text-indigo-600 transition">Notre mission</a>
  33.          <a href="https://qel.fr/contact" class="text-gray-700 hover:text-indigo-600 transition">Contact</a>
  34.        </nav>
  35.        <button id="hamburger" class="md:hidden text-gray-700 hover:text-indigo-600 focus:outline-none">
  36.          <i class="fas fa-bars text-xl"></i>
  37.        </button>
  38.      </div>
  39.  
  40.      <!-- Mobile Menu -->
  41.      <div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
  42.        <div class="flex flex-col items-center py-4">
  43.          <a href="https://qel.fr" class="py-2 text-gray-700 hover:text-indigo-600 transition">Accueil</a>
  44.          <a href="https://qel.fr/jobs" class="py-2 text-gray-700 hover:text-indigo-600 transition">Trouver un emploi</a>
  45.          <a href="https://qel.fr/about" class="py-2 text-gray-700 hover:text-indigo-600 transition">Notre mission</a>
  46.          <a href="https://qel.fr/contact" class="py-2 text-gray-700 hover:text-indigo-600 transition">Contact</a>
  47.        </div>
  48.      </div>
  49.    </header>
  50.  
  51. <!-- Search Section -->
  52. <!-- Search Section -->
  53. <!-- Search Section -->
  54. <div class="bg-gradient-to-r from-teal-500 via-cyan-400 to-teal-500 py-20">
  55.  <div class="container mx-auto px-6">
  56.    <!-- Title Section -->
  57.    <h1 class="text-3xl md:text-4xl font-bold text-center text-white mb-8 tracking-wide">Trouvez l'emploi qui vous correspond !</h1>
  58.  
  59.    <div class="flex justify-center">
  60.      <!-- Search Form with Flexbox -->
  61.      <form action="https://qel.fr/jobs" class="w-full sm:w-4/5 md:w-3/4 lg:w-2/3 xl:w-1/2 bg-white p-8 rounded-lg shadow-2xl flex flex-col justify-between h-full">
  62.        
  63.        <!-- Job and Location Inputs -->
  64.        <div class="flex flex-col gap-6 mb-6">
  65.          <input name="j" type="text" class="flex-1 px-4 py-3 border border-gray-300 rounded-xl shadow-sm focus:outline-none focus:ring-2 focus:ring-teal-500 text-lg transition duration-200" placeholder="Métier, compétence ou entreprise" />
  66.          <input name="l" type="text" class="flex-1 px-4 py-3 border border-gray-300 rounded-xl shadow-sm focus:outline-none focus:ring-2 focus:ring-teal-500 text-lg transition duration-200" placeholder="Ville, département ou pays" />
  67.        </div>
  68.  
  69.        <!-- Sorting Options -->
  70.        <div class="flex flex-wrap justify-between items-center text-gray-700 text-sm mb-6">
  71.          <span>Trier par</span>
  72.          <div class="flex gap-6 mt-3 md:mt-0">
  73.            <label class="flex items-center text-gray-600">
  74.              <input id="relevance" name="s" value="relevance" type="radio" class="mr-2" checked />
  75.              Pertinence            </label>
  76.            <label class="flex items-center text-gray-600">
  77.              <input id="date" name="s" value="date" type="radio" class="mr-2" />
  78.              Date            </label>
  79.            <label class="flex items-center text-gray-600">
  80.              <input id="salary" name="s" value="salary" type="radio" class="mr-2" />
  81.              Salaire            </label>
  82.          </div>
  83.        </div>
  84.  
  85.        <!-- Search Button at the Bottom -->
  86.        <div class="mt-auto">
  87.          <button type="submit" class="bg-gradient-to-r from-teal-400 to-teal-600 text-white px-8 py-3 rounded-xl text-lg font-semibold shadow-md hover:bg-teal-700 focus:outline-none transition duration-200 ease-in-out w-full">
  88.            <i class="fas fa-search mr-2"></i> Recherche
  89.          </button>
  90.        </div>
  91.      </form>
  92.    </div>
  93.  </div>
  94. </div>
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102. <section class="py-16 bg-blue-50 bg-[url('/assets/bg-clouds.svg')] bg-cover bg-center">
  103. <h3 class="text-center text-3xl sm:text-4xl md:text-5xl font-extrabold mb-12 tracking-tight">
  104.  <span class="bg-gradient-to-r from-teal-500 via-cyan-400 to-teal-500 bg-clip-text text-transparent">
  105.  Emplois par entreprise
  106.  </span>
  107. </h3>
  108.  
  109.  
  110.  
  111.  <div class="max-w-7xl mx-auto px-4">
  112.    <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 lg:grid-cols-8 gap-6">
  113.      
  114.          <a href="https://qel.fr/jobs?j=Adobe&l=&s=relevance"
  115.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  116.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  117.              <img src="https://qel.fr/assets/logos/adobe.svg" alt="Adobe logo"
  118.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  119.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  120.            </div>
  121.            <span class="text-sm text-gray-700 font-medium">Adobe</span>
  122.          </a>
  123.        
  124.          <a href="https://qel.fr/jobs?j=Airbnb&l=&s=relevance"
  125.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  126.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  127.              <img src="https://qel.fr/assets/logos/airbnb.svg" alt="Airbnb logo"
  128.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  129.              <i class="fa-brands fa-airbnb text-gray-500 text-2xl"></i>
  130.            </div>
  131.            <span class="text-sm text-gray-700 font-medium">Airbnb</span>
  132.          </a>
  133.        
  134.          <a href="https://qel.fr/jobs?j=Amazon&l=&s=relevance"
  135.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  136.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  137.              <img src="https://qel.fr/assets/logos/amazon.svg" alt="Amazon logo"
  138.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  139.              <i class="fa-brands fa-amazon text-gray-500 text-2xl"></i>
  140.            </div>
  141.            <span class="text-sm text-gray-700 font-medium">Amazon</span>
  142.          </a>
  143.        
  144.          <a href="https://qel.fr/jobs?j=Apple&l=&s=relevance"
  145.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  146.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  147.              <img src="https://qel.fr/assets/logos/apple.svg" alt="Apple logo"
  148.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  149.              <i class="fa-brands fa-apple text-gray-500 text-2xl"></i>
  150.            </div>
  151.            <span class="text-sm text-gray-700 font-medium">Apple</span>
  152.          </a>
  153.        
  154.          <a href="https://qel.fr/jobs?j=Argos&l=&s=relevance"
  155.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  156.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  157.              <img src="https://qel.fr/assets/logos/argos.svg" alt="Argos logo"
  158.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  159.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  160.            </div>
  161.            <span class="text-sm text-gray-700 font-medium">Argos</span>
  162.          </a>
  163.        
  164.          <a href="https://qel.fr/jobs?j=Bestbuy&l=&s=relevance"
  165.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  166.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  167.              <img src="https://qel.fr/assets/logos/bestbuy.svg" alt="Bestbuy logo"
  168.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  169.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  170.            </div>
  171.            <span class="text-sm text-gray-700 font-medium">Bestbuy</span>
  172.          </a>
  173.        
  174.          <a href="https://qel.fr/jobs?j=Capitol+One&l=&s=relevance"
  175.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  176.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  177.              <img src="https://qel.fr/assets/logos/capitolone.svg" alt="Capitol One logo"
  178.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  179.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  180.            </div>
  181.            <span class="text-sm text-gray-700 font-medium">Capitol One</span>
  182.          </a>
  183.        
  184.          <a href="https://qel.fr/jobs?j=Chegg&l=&s=relevance"
  185.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  186.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  187.              <img src="https://qel.fr/assets/logos/chegg.svg" alt="Chegg logo"
  188.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  189.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  190.            </div>
  191.            <span class="text-sm text-gray-700 font-medium">Chegg</span>
  192.          </a>
  193.        
  194.          <a href="https://qel.fr/jobs?j=Cisco&l=&s=relevance"
  195.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  196.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  197.              <img src="https://qel.fr/assets/logos/cisco.svg" alt="Cisco logo"
  198.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  199.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  200.            </div>
  201.            <span class="text-sm text-gray-700 font-medium">Cisco</span>
  202.          </a>
  203.        
  204.          <a href="https://qel.fr/jobs?j=Costco&l=&s=relevance"
  205.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  206.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  207.              <img src="https://qel.fr/assets/logos/costco.svg" alt="Costco logo"
  208.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  209.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  210.            </div>
  211.            <span class="text-sm text-gray-700 font-medium">Costco</span>
  212.          </a>
  213.        
  214.          <a href="https://qel.fr/jobs?j=Dominos&l=&s=relevance"
  215.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  216.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  217.              <img src="https://qel.fr/assets/logos/dominos.svg" alt="Dominos logo"
  218.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  219.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  220.            </div>
  221.            <span class="text-sm text-gray-700 font-medium">Dominos</span>
  222.          </a>
  223.        
  224.          <a href="https://qel.fr/jobs?j=ESPN&l=&s=relevance"
  225.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  226.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  227.              <img src="https://qel.fr/assets/logos/espn.svg" alt="ESPN logo"
  228.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  229.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  230.            </div>
  231.            <span class="text-sm text-gray-700 font-medium">ESPN</span>
  232.          </a>
  233.        
  234.          <a href="https://qel.fr/jobs?j=Facebook&l=&s=relevance"
  235.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  236.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  237.              <img src="https://qel.fr/assets/logos/facebook.svg" alt="Facebook logo"
  238.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  239.              <i class="fa-brands fa-facebook-f text-gray-500 text-2xl"></i>
  240.            </div>
  241.            <span class="text-sm text-gray-700 font-medium">Facebook</span>
  242.          </a>
  243.        
  244.          <a href="https://qel.fr/jobs?j=Facess&l=&s=relevance"
  245.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  246.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  247.              <img src="https://qel.fr/assets/logos/facess.svg" alt="Facess logo"
  248.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  249.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  250.            </div>
  251.            <span class="text-sm text-gray-700 font-medium">Facess</span>
  252.          </a>
  253.        
  254.          <a href="https://qel.fr/jobs?j=GoDaddy&l=&s=relevance"
  255.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  256.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  257.              <img src="https://qel.fr/assets/logos/godaddy.svg" alt="GoDaddy logo"
  258.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  259.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  260.            </div>
  261.            <span class="text-sm text-gray-700 font-medium">GoDaddy</span>
  262.          </a>
  263.        
  264.          <a href="https://qel.fr/jobs?j=Google&l=&s=relevance"
  265.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  266.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  267.              <img src="https://qel.fr/assets/logos/google.svg" alt="Google logo"
  268.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  269.              <i class="fa-brands fa-google text-gray-500 text-2xl"></i>
  270.            </div>
  271.            <span class="text-sm text-gray-700 font-medium">Google</span>
  272.          </a>
  273.        
  274.          <a href="https://qel.fr/jobs?j=HubSpot&l=&s=relevance"
  275.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  276.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  277.              <img src="https://qel.fr/assets/logos/hubspot.svg" alt="HubSpot logo"
  278.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  279.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  280.            </div>
  281.            <span class="text-sm text-gray-700 font-medium">HubSpot</span>
  282.          </a>
  283.        
  284.          <a href="https://qel.fr/jobs?j=Ikea&l=&s=relevance"
  285.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  286.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  287.              <img src="https://qel.fr/assets/logos/ikea.svg" alt="Ikea logo"
  288.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  289.              <i class="fa-solid fa-couch text-gray-500 text-2xl"></i>
  290.            </div>
  291.            <span class="text-sm text-gray-700 font-medium">Ikea</span>
  292.          </a>
  293.        
  294.          <a href="https://qel.fr/jobs?j=Instagram&l=&s=relevance"
  295.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  296.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  297.              <img src="https://qel.fr/assets/logos/instagram.svg" alt="Instagram logo"
  298.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  299.              <i class="fa-brands fa-instagram text-gray-500 text-2xl"></i>
  300.            </div>
  301.            <span class="text-sm text-gray-700 font-medium">Instagram</span>
  302.          </a>
  303.        
  304.          <a href="https://qel.fr/jobs?j=Intuit&l=&s=relevance"
  305.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  306.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  307.              <img src="https://qel.fr/assets/logos/intuit.svg" alt="Intuit logo"
  308.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  309.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  310.            </div>
  311.            <span class="text-sm text-gray-700 font-medium">Intuit</span>
  312.          </a>
  313.        
  314.          <a href="https://qel.fr/jobs?j=LinkedIn&l=&s=relevance"
  315.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  316.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  317.              <img src="https://qel.fr/assets/logos/linkedin.svg" alt="LinkedIn logo"
  318.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  319.              <i class="fa-brands fa-linkedin-in text-gray-500 text-2xl"></i>
  320.            </div>
  321.            <span class="text-sm text-gray-700 font-medium">LinkedIn</span>
  322.          </a>
  323.        
  324.          <a href="https://qel.fr/jobs?j=Microsoft&l=&s=relevance"
  325.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  326.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  327.              <img src="https://qel.fr/assets/logos/microsoft.svg" alt="Microsoft logo"
  328.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  329.              <i class="fa-brands fa-windows text-gray-500 text-2xl"></i>
  330.            </div>
  331.            <span class="text-sm text-gray-700 font-medium">Microsoft</span>
  332.          </a>
  333.        
  334.          <a href="https://qel.fr/jobs?j=Netflix&l=&s=relevance"
  335.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  336.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  337.              <img src="https://qel.fr/assets/logos/netflix.svg" alt="Netflix logo"
  338.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  339.              <i class="fa-solid fa-film text-gray-500 text-2xl"></i>
  340.            </div>
  341.            <span class="text-sm text-gray-700 font-medium">Netflix</span>
  342.          </a>
  343.        
  344.          <a href="https://qel.fr/jobs?j=Nike&l=&s=relevance"
  345.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  346.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  347.              <img src="https://qel.fr/assets/logos/nike.svg" alt="Nike logo"
  348.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  349.              <i class="fa-solid fa-shoe-prints text-gray-500 text-2xl"></i>
  350.            </div>
  351.            <span class="text-sm text-gray-700 font-medium">Nike</span>
  352.          </a>
  353.        
  354.          <a href="https://qel.fr/jobs?j=Nvidia&l=&s=relevance"
  355.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  356.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  357.              <img src="https://qel.fr/assets/logos/nvidia.svg" alt="Nvidia logo"
  358.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  359.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  360.            </div>
  361.            <span class="text-sm text-gray-700 font-medium">Nvidia</span>
  362.          </a>
  363.        
  364.          <a href="https://qel.fr/jobs?j=Pandora&l=&s=relevance"
  365.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  366.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  367.              <img src="https://qel.fr/assets/logos/pandora.svg" alt="Pandora logo"
  368.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  369.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  370.            </div>
  371.            <span class="text-sm text-gray-700 font-medium">Pandora</span>
  372.          </a>
  373.        
  374.          <a href="https://qel.fr/jobs?j=PayPal&l=&s=relevance"
  375.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  376.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  377.              <img src="https://qel.fr/assets/logos/paypal.svg" alt="PayPal logo"
  378.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  379.              <i class="fa-brands fa-paypal text-gray-500 text-2xl"></i>
  380.            </div>
  381.            <span class="text-sm text-gray-700 font-medium">PayPal</span>
  382.          </a>
  383.        
  384.          <a href="https://qel.fr/jobs?j=Petco&l=&s=relevance"
  385.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  386.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  387.              <img src="https://qel.fr/assets/logos/petco.svg" alt="Petco logo"
  388.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  389.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  390.            </div>
  391.            <span class="text-sm text-gray-700 font-medium">Petco</span>
  392.          </a>
  393.        
  394.          <a href="https://qel.fr/jobs?j=Pinterest&l=&s=relevance"
  395.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  396.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  397.              <img src="https://qel.fr/assets/logos/pinterest.svg" alt="Pinterest logo"
  398.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  399.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  400.            </div>
  401.            <span class="text-sm text-gray-700 font-medium">Pinterest</span>
  402.          </a>
  403.        
  404.          <a href="https://qel.fr/jobs?j=Pizza+Hut&l=&s=relevance"
  405.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  406.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  407.              <img src="https://qel.fr/assets/logos/pizzahut.svg" alt="Pizza Hut logo"
  408.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  409.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  410.            </div>
  411.            <span class="text-sm text-gray-700 font-medium">Pizza Hut</span>
  412.          </a>
  413.        
  414.          <a href="https://qel.fr/jobs?j=Riot+Games&l=&s=relevance"
  415.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  416.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  417.              <img src="https://qel.fr/assets/logos/riotgames.svg" alt="Riot Games logo"
  418.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  419.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  420.            </div>
  421.            <span class="text-sm text-gray-700 font-medium">Riot Games</span>
  422.          </a>
  423.        
  424.          <a href="https://qel.fr/jobs?j=Roblox&l=&s=relevance"
  425.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  426.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  427.              <img src="https://qel.fr/assets/logos/roblox.svg" alt="Roblox logo"
  428.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  429.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  430.            </div>
  431.            <span class="text-sm text-gray-700 font-medium">Roblox</span>
  432.          </a>
  433.        
  434.          <a href="https://qel.fr/jobs?j=Salesforce&l=&s=relevance"
  435.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  436.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  437.              <img src="https://qel.fr/assets/logos/salesforce.svg" alt="Salesforce logo"
  438.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  439.              <i class="fa-solid fa-cloud text-gray-500 text-2xl"></i>
  440.            </div>
  441.            <span class="text-sm text-gray-700 font-medium">Salesforce</span>
  442.          </a>
  443.        
  444.          <a href="https://qel.fr/jobs?j=Santander&l=&s=relevance"
  445.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  446.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  447.              <img src="https://qel.fr/assets/logos/santander.svg" alt="Santander logo"
  448.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  449.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  450.            </div>
  451.            <span class="text-sm text-gray-700 font-medium">Santander</span>
  452.          </a>
  453.        
  454.          <a href="https://qel.fr/jobs?j=Spotify&l=&s=relevance"
  455.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  456.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  457.              <img src="https://qel.fr/assets/logos/spotify.svg" alt="Spotify logo"
  458.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  459.              <i class="fa-brands fa-spotify text-gray-500 text-2xl"></i>
  460.            </div>
  461.            <span class="text-sm text-gray-700 font-medium">Spotify</span>
  462.          </a>
  463.        
  464.          <a href="https://qel.fr/jobs?j=Starbucks&l=&s=relevance"
  465.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  466.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  467.              <img src="https://qel.fr/assets/logos/starbucks.svg" alt="Starbucks logo"
  468.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  469.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  470.            </div>
  471.            <span class="text-sm text-gray-700 font-medium">Starbucks</span>
  472.          </a>
  473.        
  474.          <a href="https://qel.fr/jobs?j=Stream&l=&s=relevance"
  475.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  476.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  477.              <img src="https://qel.fr/assets/logos/stream.svg" alt="Stream logo"
  478.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  479.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  480.            </div>
  481.            <span class="text-sm text-gray-700 font-medium">Stream</span>
  482.          </a>
  483.        
  484.          <a href="https://qel.fr/jobs?j=Target&l=&s=relevance"
  485.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  486.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  487.              <img src="https://qel.fr/assets/logos/target.svg" alt="Target logo"
  488.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  489.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  490.            </div>
  491.            <span class="text-sm text-gray-700 font-medium">Target</span>
  492.          </a>
  493.        
  494.          <a href="https://qel.fr/jobs?j=The+Home+Depot&l=&s=relevance"
  495.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  496.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  497.              <img src="https://qel.fr/assets/logos/thehomedepot.svg" alt="The Home Depot logo"
  498.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  499.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  500.            </div>
  501.            <span class="text-sm text-gray-700 font-medium">The Home Depot</span>
  502.          </a>
  503.        
  504.          <a href="https://qel.fr/jobs?j=TripAdvisor&l=&s=relevance"
  505.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  506.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  507.              <img src="https://qel.fr/assets/logos/tripadvisor.svg" alt="TripAdvisor logo"
  508.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  509.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  510.            </div>
  511.            <span class="text-sm text-gray-700 font-medium">TripAdvisor</span>
  512.          </a>
  513.        
  514.          <a href="https://qel.fr/jobs?j=Walmart&l=&s=relevance"
  515.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  516.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  517.              <img src="https://qel.fr/assets/logos/walmart.svg" alt="Walmart logo"
  518.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  519.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  520.            </div>
  521.            <span class="text-sm text-gray-700 font-medium">Walmart</span>
  522.          </a>
  523.        
  524.          <a href="https://qel.fr/jobs?j=Wells+Fargo&l=&s=relevance"
  525.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  526.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  527.              <img src="https://qel.fr/assets/logos/wellsfargo.svg" alt="Wells Fargo logo"
  528.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  529.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  530.            </div>
  531.            <span class="text-sm text-gray-700 font-medium">Wells Fargo</span>
  532.          </a>
  533.        
  534.          <a href="https://qel.fr/jobs?j=Yahoo&l=&s=relevance"
  535.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  536.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  537.              <img src="https://qel.fr/assets/logos/yahoo.svg" alt="Yahoo logo"
  538.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  539.              <i class="fa-brands fa-yahoo text-gray-500 text-2xl"></i>
  540.            </div>
  541.            <span class="text-sm text-gray-700 font-medium">Yahoo</span>
  542.          </a>
  543.        
  544.          <a href="https://qel.fr/jobs?j=Zendesk&l=&s=relevance"
  545.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  546.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  547.              <img src="https://qel.fr/assets/logos/zendesk.svg" alt="Zendesk logo"
  548.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  549.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  550.            </div>
  551.            <span class="text-sm text-gray-700 font-medium">Zendesk</span>
  552.          </a>
  553.        
  554.          <a href="https://qel.fr/jobs?j=Zillow&l=&s=relevance"
  555.             class="flex flex-col items-center text-center bg-white p-4 rounded-xl shadow-sm hover:shadow-lg transition hover:-translate-y-1 duration-300">
  556.            <div class="w-16 h-16 bg-gray-100 rounded-full flex items-center justify-center mb-2 relative">
  557.              <img src="https://qel.fr/assets/logos/zillow.svg" alt="Zillow logo"
  558.                   class="w-10 h-10 object-contain absolute" onerror="this.style.display='none'" />
  559.              <i class="fa-solid fa-building text-gray-500 text-2xl"></i>
  560.            </div>
  561.            <span class="text-sm text-gray-700 font-medium">Zillow</span>
  562.          </a>
  563.            </div>
  564.  </div>
  565. </section>
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572. <section class="py-16 bg-gradient-to-b from-white to-blue-50">
  573. <h3 class="text-center text-3xl sm:text-4xl md:text-5xl font-extrabold mb-12 tracking-tight">
  574.  <span class="bg-gradient-to-r from-teal-500 via-cyan-400 to-teal-500 bg-clip-text text-transparent">
  575.   Emplois par localisation
  576.  </span>
  577. </h3>
  578.  
  579.  
  580.  <div class="max-w-7xl mx-auto px-4">
  581.    <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
  582.  
  583.      <!-- Example: Europe -->
  584.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  585.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🇺 Europe</div>
  586.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  587.          <a href="https://qel.fr/jobs?j=&l=Austria&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Austria</a><a href="https://qel.fr/jobs?j=&l=Belgium&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Belgium</a><a href="https://qel.fr/jobs?j=&l=Czech+Republic&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Czech Republic</a><a href="https://qel.fr/jobs?j=&l=Denmark&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Denmark</a><a href="https://qel.fr/jobs?j=&l=Finland&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Finland</a><a href="https://qel.fr/jobs?j=&l=France&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">France</a><a href="https://qel.fr/jobs?j=&l=Germany&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Germany</a><a href="https://qel.fr/jobs?j=&l=Hungary&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Hungary</a><a href="https://qel.fr/jobs?j=&l=Ireland&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Ireland</a><a href="https://qel.fr/jobs?j=&l=Italy&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Italy</a><a href="https://qel.fr/jobs?j=&l=Luxembourg&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Luxembourg</a><a href="https://qel.fr/jobs?j=&l=Malta&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Malta</a><a href="https://qel.fr/jobs?j=&l=Netherlands&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Netherlands</a><a href="https://qel.fr/jobs?j=&l=Norway&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Norway</a><a href="https://qel.fr/jobs?j=&l=Poland&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Poland</a><a href="https://qel.fr/jobs?j=&l=Portugal&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Portugal</a><a href="https://qel.fr/jobs?j=&l=Romania&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Romania</a><a href="https://qel.fr/jobs?j=&l=Russia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Russia</a><a href="https://qel.fr/jobs?j=&l=Slovakia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Slovakia</a><a href="https://qel.fr/jobs?j=&l=Spain&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Spain</a><a href="https://qel.fr/jobs?j=&l=Sweden&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Sweden</a><a href="https://qel.fr/jobs?j=&l=Switzerland&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Switzerland</a><a href="https://qel.fr/jobs?j=&l=United+Kingdom&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">United Kingdom</a>        </div>
  588.      </div>
  589.  
  590.      <!-- North America -->
  591.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  592.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🇺🇸 Amérique du Nord</div>
  593.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  594.          <a href="https://qel.fr/jobs?j=&l=Canada&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Canada</a><a href="https://qel.fr/jobs?j=&l=Mexico&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Mexico</a><a href="https://qel.fr/jobs?j=&l=United+States&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">United States</a>        </div>
  595.      </div>
  596.  
  597.      <!-- Central America & South America -->
  598.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  599.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🌎 Amérique Latine</div>
  600.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  601.          <a href="https://qel.fr/jobs?j=&l=Costa+Rica&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Costa Rica</a><a href="https://qel.fr/jobs?j=&l=Guatemala&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Guatemala</a><a href="https://qel.fr/jobs?j=&l=Panama&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Panama</a><a href="https://qel.fr/jobs?j=&l=Argentina&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Argentina</a><a href="https://qel.fr/jobs?j=&l=Bolivia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Bolivia</a><a href="https://qel.fr/jobs?j=&l=Brazil&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Brazil</a><a href="https://qel.fr/jobs?j=&l=Chile&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Chile</a><a href="https://qel.fr/jobs?j=&l=Colombia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Colombia</a><a href="https://qel.fr/jobs?j=&l=Ecuador&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Ecuador</a><a href="https://qel.fr/jobs?j=&l=Paraguay&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Paraguay</a><a href="https://qel.fr/jobs?j=&l=Peru&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Peru</a><a href="https://qel.fr/jobs?j=&l=Uruguay&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Uruguay</a><a href="https://qel.fr/jobs?j=&l=Venezuela&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Venezuela</a>        </div>
  602.      </div>
  603.  
  604.      <!-- Asia -->
  605.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  606.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg"> Asie</div>
  607.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  608.          <a href="https://qel.fr/jobs?j=&l=China&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">China</a><a href="https://qel.fr/jobs?j=&l=Hong+Kong&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Hong Kong</a><a href="https://qel.fr/jobs?j=&l=India&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">India</a><a href="https://qel.fr/jobs?j=&l=Japan&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Japan</a><a href="https://qel.fr/jobs?j=&l=Korea&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Korea</a><a href="https://qel.fr/jobs?j=&l=Malaysia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Malaysia</a><a href="https://qel.fr/jobs?j=&l=Pakistan&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Pakistan</a><a href="https://qel.fr/jobs?j=&l=Philippines&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Philippines</a><a href="https://qel.fr/jobs?j=&l=Singapore&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Singapore</a><a href="https://qel.fr/jobs?j=&l=Taiwan&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Taiwan</a><a href="https://qel.fr/jobs?j=&l=Thailand&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Thailand</a><a href="https://qel.fr/jobs?j=&l=Vietnam&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Vietnam</a>        </div>
  609.      </div>
  610.  
  611.      <!-- Middle East -->
  612.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  613.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🕌 Moyen Orient</div>
  614.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  615.          <a href="https://qel.fr/jobs?j=&l=Kuwait&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Kuwait</a><a href="https://qel.fr/jobs?j=&l=Oman&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Oman</a><a href="https://qel.fr/jobs?j=&l=Qatar&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Qatar</a><a href="https://qel.fr/jobs?j=&l=Turkey&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Turkey</a><a href="https://qel.fr/jobs?j=&l=United+Arab+Emirates&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">United Arab Emirates</a>        </div>
  616.      </div>
  617.  
  618.      <!-- Africa -->
  619.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  620.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🌍 Afrique</div>
  621.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  622.          <a href="https://qel.fr/jobs?j=&l=Morocco&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Morocco</a><a href="https://qel.fr/jobs?j=&l=South+Africa&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">South Africa</a>        </div>
  623.      </div>
  624.  
  625.      <!-- Caribbean & Pacific -->
  626.      <div class="bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-md transition">
  627.        <div class="px-5 py-4 border-b text-teal-600 font-semibold text-lg">🏝 les & Pacifique</div>
  628.        <div class="flex flex-wrap p-4 gap-2 text-sm">
  629.          <a href="https://qel.fr/jobs?j=&l=Dominican+Republic&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Dominican Republic</a><a href="https://qel.fr/jobs?j=&l=Puerto+Rico&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Puerto Rico</a><a href="https://qel.fr/jobs?j=&l=Australia&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">Australia</a><a href="https://qel.fr/jobs?j=&l=New+Zealand&s=relevance" class="bg-teal-50 hover:bg-teal-100 text-teal-600 px-3 py-1 rounded-full transition">New Zealand</a>        </div>
  630.      </div>
  631.  
  632.    </div>
  633.  </div>
  634. </section>
  635.  
  636. <section class="py-16 bg-blue-50 bg-[url('/assets/bg-clouds.svg')] bg-cover bg-center">
  637.  <div class="container mx-auto text-center px-6">
  638.    <h3 class="text-4xl font-extrabold text-teal-600 mb-12">Nos avantages</h3>
  639.  
  640.    <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
  641.      <!-- Feature 1 -->
  642.      <div class="bg-white p-8 rounded-xl shadow-lg transform hover:scale-105 hover:shadow-2xl transition-all duration-300">
  643.        <div class="w-20 h-20 bg-teal-200 rounded-full flex items-center justify-center mb-6 shadow-md mx-auto">
  644.          <i class="fas fa-search text-teal-500 text-3xl"></i>
  645.        </div>
  646.        <h4 class="text-2xl font-semibold text-gray-800 mb-4">Recherche d'emploi</h4>
  647.        <p class="text-gray-600 text-lg">Trouvez facilement des offres dans tous les secteurs et régions. Découvrez les meilleures opportunités correspondant à vos compétences et aspirations professionnelles.</p>
  648.      </div>
  649.  
  650.      <!-- Feature 2 -->
  651.      <div class="bg-white p-8 rounded-xl shadow-lg transform hover:scale-105 hover:shadow-2xl transition-all duration-300">
  652.        <div class="w-20 h-20 bg-teal-200 rounded-full flex items-center justify-center mb-6 shadow-md mx-auto">
  653.          <i class="fas fa-briefcase text-teal-500 text-3xl"></i>
  654.        </div>
  655.        <h4 class="text-2xl font-semibold text-gray-800 mb-4">Annonces d'emploi</h4>
  656.        <p class="text-gray-600 text-lg">Parcourez des milliers d'offres d'emploi actualisées dans divers domaines d'activité. Trouvez le poste qui correspond parfaitement à votre projet de carrière.</p>
  657.      </div>
  658.  
  659.      <!-- Feature 3 -->
  660.      <div class="bg-white p-8 rounded-xl shadow-lg transform hover:scale-105 hover:shadow-2xl transition-all duration-300">
  661.        <div class="w-20 h-20 bg-teal-200 rounded-full flex items-center justify-center mb-6 shadow-md mx-auto">
  662.          <i class="fas fa-building text-teal-500 text-3xl"></i>
  663.        </div>
  664.        <h4 class="text-2xl font-semibold text-gray-800 mb-4">Fiches entreprises</h4>
  665.        <p class="text-gray-600 text-lg">Découvrez vos futurs employeurs grâce à des profils détaillés : présentation de l'entreprise, avis collaboratifs et insights sur la culture d'entreprise.</p>
  666.      </div>
  667.  
  668.      <!-- Feature 4 -->
  669.      <div class="bg-white p-8 rounded-xl shadow-lg transform hover:scale-105 hover:shadow-2xl transition-all duration-300">
  670.        <div class="w-20 h-20 bg-teal-200 rounded-full flex items-center justify-center mb-6 shadow-md mx-auto">
  671.          <i class="fas fa-user-cog text-teal-500 text-3xl"></i>
  672.        </div>
  673.        <h4 class="text-2xl font-semibold text-gray-800 mb-4">Accompagnement carrire</h4>
  674.        <p class="text-gray-600 text-lg">Bénéficiez de ressources expertes : conseils pour rédiger un CV percutant, préparation aux entretiens d'embauche et ateliers de développement de compétences pour dcrocher le job idéal.</p>
  675.      </div>
  676.    </div>
  677.  </div>
  678. </section>
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.    <!-- Footer -->
  686.  <footer class="bg-gradient-to-r from-teal-500 via-cyan-400 to-teal-500 text-white py-4 mt-auto">
  687.  <div class="container mx-auto text-center">
  688.    <p>&copy; 2025 Qel.fr - Recherche d'emplois. Tous droits réservés ©.</p>
  689.  </div>
  690. </footer>
  691.  
  692.  
  693.    <!-- Script for mobile menu toggle -->
  694.    <script>
  695.      const hamburger = document.getElementById('hamburger');
  696.      const mobileMenu = document.getElementById('mobile-menu');
  697.      hamburger.addEventListener('click', () => {
  698.        mobileMenu.classList.toggle('hidden');
  699.      });
  700.    </script>
  701.    
  702.    <script data-host="https://monsieur.top/mesure_analytics" data-dnt="false" src="https://monsieur.top/mesure_analytics/js/script.js" id="ZwSg9rf6GA" async defer></script>
  703.  </body>
  704. </html>
  705.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda