<!DOCTYPE HTML>
<html lang="fr-FR" data-site-url="https://www.roberthalf.com/">
<head>
<meta charset="UTF-8"/>
<meta name="content-page-ref" content="ybR8UI6qkrN0TlMU6cORoofvoucG0gh2ODm0obLMpvJMC3OU7Pjw6kZrTGEYJUHTTVZHOSG-4cf70PWyJZufKg"/>
<script defer="defer" type="text/javascript" src="/.rum/@adobe/helix-rum-js@%5E2/dist/micro.js"></script>
<link rel="icon" type="image/x-icon" href="/content/dam/roberthalf/favicon.png"/>
<!-- Preconnect links -->
<link rel="preconnect" href="https://www.google.com"/>
<link rel="preconnect" href="https://cdn.cookielaw.org"/>
<link rel="dns-prefetch" href="https://prdmir-online.roberthalf.com"/>
<link rel="preconnect" href="https://www.googletagmanager.com"/>
<link rel="preconnect" href="https://js.clrt.ai"/>
<link rel="preconnect" href="https://resources.roberthalfonline.com"/>
<meta name="template" content="full-width-page-content"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="robots" content="index, follow"/>
<link rel="canonical" href="https://www.roberthalf.com/fr/fr"/>
<!-- Language And Country
fr-fr
Country
fr-->
<!-- OptanonConsentNoticeStart -->
<link rel="dns-prefetch" href="https://cdn.cookielaw.org"/>
<script id="onetrust-cdn" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-language="fr-fr" type="text/javascript" charset="UTF-8" data-domain-script="018e606b-32dc-7dab-8ed7-b5dcf8127d64" async fetchpriority="high"></script>
<script type="text/javascript">
function OptanonWrapper() {
checkConsentValues();
}
</script>
<!-- OptanonConsentNoticeEnd -->
<!-- Check Cookie Value Start-->
<script type="text/javascript">
var isPerformanceCookiesChecked = false;
function checkConsentValues() {
var consentRatio = getOptanonConsentRatio();
var rhclBaseEl = document.querySelector("rhcl-base");
var isPerformanceCookieEnabled = 'false' === "true";
var consentAccepted = consentRatio != null && consentRatio.includes("2:1");
var functionalCookiesAccepted = consentRatio != null && consentRatio.includes("C0003:1");
if (consentAccepted) {
isPerformanceCookiesChecked = true;
var oneTrustEvent = new CustomEvent("rh-onetrust-accepted", { "detail": "vanilla js version of one trust event" });
var oneTrustJSEvent = new CustomEvent("rh-onetrust-accepted-js", { "detail": "vanilla js version of one trust event" });
document.dispatchEvent(oneTrustJSEvent);
document.dispatchEvent(oneTrustEvent);
if (isPerformanceCookieEnabled) {
if (rhclBaseEl.hasAttribute("performance-cookie-disabled")) {
rhclBaseEl.removeAttribute("performance-cookie-disabled");
}
}
} else if (isPerformanceCookieEnabled) {
rhclBaseEl.setAttribute("performance-cookie-disabled", true);
}
//detail will have true/false value based on functional cookie consent
var functionalCookiesEvent = new CustomEvent("rh-onetrust-functional-changed", {"detail": functionalCookiesAccepted});
document.dispatchEvent(functionalCookiesEvent);
}
window.setTimeout(checkConsentValues, 2000);
function getCookie(cname) {
var name = cname + '=';
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return false;
}
function getOptanonConsentRatio() {
const queryParams = new URLSearchParams(getCookie("OptanonConsent"));
return queryParams.get('groups');
}
</script>
<!-- Check Cookie Value End-->
<!-- TealiumStart -->
<script type="text/javascript">
var utag_data = {"pageType":"Other","pageSection":"section","pageName":"Français","countryCode":"fr","currencyCode":"USD"};
// This script is provided, don't change without consulting the analytics team
(function (a, b, c, d) {
a = 'https://tags.roberthalf.com/france2/prod/utag.js';
b = document; c = 'script'; d = b.createElement(c); d.src = a; d.type = 'text/java' + c; d.async = true;
a = b.getElementsByTagName(c)[0]; a.parentNode.insertBefore(d, a);
})();
</script>
<script async defer src="/etc.clientlibs/roberthalf/clientlibs/clientlib-tealium.lc-4045ddcc1948e9043decb7264c4cb7f5-lc.min.js"></script>
<!-- TealiumEnd -->
<!-- InvocaStart -->
<!-- InvocaEnd -->
<script>
var salaryGuideGatingProperties = '{ enabled: false, redirectLocation: "null", key: "null" }';
if (salaryGuideGatingProperties.redirectLocation && !salaryGuideGatingProperties.redirectLocation.endsWith(".html")) {
salaryGuideGatingProperties.redirectLocation += ".html";
}
window.salaryGuideGatingProperties = salaryGuideGatingProperties;
window.passesSalaryGuideGating = function() {
if (
salaryGuideGatingProperties.enabled != undefined &&
salaryGuideGatingProperties.enabled.toString().toLowerCase() === "true" &&
window.localStorage.getItem("salaryGuideGatingKey") != salaryGuideGatingProperties.key &&
window.location.pathname != salaryGuideGatingProperties.redirectLocation
) {
return false;
}
return true;
}
</script>
<link media="print" rel="stylesheet" href="/etc.clientlibs/roberthalf/clientlibs/clientlib-base.lc-aadab028fda76fa101c57a36121a8a16-lc.min.css" type="text/css">
<script>
let css = document.querySelector('link[media="print"]');
if(css) {
css.media = "all";
}
</script>
<script>
// window function to fetch UPO
function getUPO() {
try {
const upoString = localStorage.getItem("unifiedProfileObject");
if (!upoString) return {};
const parsed = JSON.parse(decodeURIComponent(atob(upoString)));
if (!parsed || typeof parsed !== 'object') return {};
// Check if the country in UPO matches the current page's country
const country = window?.pageObj?.__extrasettings__?.country;
if (country && parsed.country && parsed.country.toLowerCase() !== country.toLowerCase()) {
// If it doesn't match, clear the UPO
Object.keys(parsed).forEach(key => parsed[key] = '');
}
return parsed;
} catch (e) {
console.warn("Error processing UPO:", e);
return {};
}
}
// window function to update UPO
async function setUPO(unifiedProfileObject) {
// when setting the upo, include the country if it is not already present
try {
if (!unifiedProfileObject.country) {
unifiedProfileObject.country = window?.pageObj?.__extrasettings__?.country;
}
} catch (e) {
console.warn("Error setting UPO country:", e);
}
const encodedString = btoa(encodeURIComponent(JSON.stringify(unifiedProfileObject)));
localStorage.setItem("unifiedProfileObject", encodedString);
await window.yieldToMain?.();
}
</script>
<script>
window.addEventListener("rhcl-initialized", () => {
window.setTimeout(handleClLoaded, 250);
});
// Backup in case events do not sync up
window.setTimeout(handleClLoaded, 5000);
function handleClLoaded() {
document.querySelector('style[data-source="rh-slot-style"]')?.remove();
}
</script>
<link rel="preload stylesheet" as="style" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/assets/libraries/fontawesome6/css/all.css"/>
<link rel="preload stylesheet" as="style" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/css/rhcl.css"/>
<link rel="preload" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/assets/Fonts/NotoSans/notosans-display-light-webfont.woff2" as="font" crossorigin>
<link rel="preload" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/assets/Fonts/NotoSans/notosans-display-webfont.woff2" as="font" crossorigin>
<link rel="preload" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/assets/Fonts/NotoSans/notosans-regular-webfont.woff2" as="font" crossorigin>
<link rel="preload" href="https://resources.roberthalfonline.com/rhcl/v42.0.2/assets/Fonts/fontawesome6/fa-regular-400.woff2" as="font" crossorigin>
<script type="module" src="https://resources.roberthalfonline.com/rhcl/v42.0.2/lib/rhcl.esm.js" async></script>
<style data-source="rh-slot-style">
[slot], rhcl-typography, rhcl-heading, rhcl-typeahead, .rhcl-typography,
.rhcl-focused-search-block, .rhcl-block-paginated-feature, rhcl-modal,
rhcl-block-stacking-cards, rhcl-block-focused-search, rhcl-search-bar,
rhcl-button-group-wrapper, rhcl-block-paired-content, .cmp-rhcl-focused-block-wrapper
.cmp-rhcl-stacking-cards-block-wrapper, .cmp-container { visibility: hidden; }
[slot]{font-family: "Noto Sans Regular";}
h1[slot],h2[slot],h3[slot],h4[slot],h5[slot],h6[slot],p[slot]{ font-family: "Noto Sans Display";}
</style>
<script type="text/javascript">
window.pageObj = {};
izCountries = 'gb,de,fr,ch,cn,jp,cl,at,ae,be,nl,nz,hk,br,sg,au,lu'.split(",");
naCountries = 'us,ca'.split(",");
luxCountries = 'us,ca,de,be,gb,br,fr'.split(",");
fomodCountries = 'nl,be,fr'.split(",");
euCountries = 'gb,de,fr,ch,at,ae,be,nl'.split(",");
aemSettings = {
"rh_account_creation": {
accountCreateResendEmailEndpoint: 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/salesforce\u002Dapi\/resend\u002Demail',
accountRoutingMap: {
"email": '',
"resume": '',
"candidate-email": '',
"msjo": '',
"login": '',
"pendingAccount": '',
// "expiredVerification": '',
"candidateExpired": '',
"clientExpired": '',
"hasWebAccountClientOnly": '',
"hasWebAccount": '',
}
},
"rh_candidate_apply": {
aiConsentEndpoint: 'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/update\u002Dai\u002Dconsent',
accountCreateEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/create\u002Daccount',
directAccountCreateEndpoint: 'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/create\u002Daccount',
applyEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/job\u002Dapply',
resendEmailEndpoint: 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/salesforce\u002Dapi\/resend\u002Demail',
submitResumeEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/submit\u002Dresume',
resumeParseEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/parse\u002Dresume\/parse',
xingUploadResumeEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/xing\u002Dresume',
linkedInUploadResumeEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/job\u002Dapply\/linkedin\u002Dresume',
geolocationEndpoint:'https:\/\/gen.api.roberthalfonline.com\/geocode\/getGeoByRegion?country_code=',
googleGeoCodeEndpoint:'https:\/\/gen.api.roberthalfonline.com\/googlegeo\/getGeocode?address=',
timezoneEndpoint:'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/timezone\/getTimezone',
fetchSkills:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/fetch\u002Dskills',
patchSkills:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/patch\u002Dskills',
bearerAuthProfile: 'https:\/\/account.roberthalf.com\/services\/apexrest\/me\/profile',
jwtUnauthProfile:'https:\/\/account.roberthalf.com\/services\/apexrest\/me\/unauthprofile?version=v4.3.0',
fetchResume:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/job\u002Dapply\/fetch\u002Dresume',
jobTypeValuesEndpoint:'https:\/\/gen.api.roberthalfonline.com\/iz\u002Dbranch\u002Dservice\/findJobTypeList',
specializationValuesEndpoint:'https:\/\/gen.api.roberthalfonline.com\/iz\u002Dbranch\u002Dservice\/findSpecializationList',
nearestOfficeValuesEndpoint:'https:\/\/gen.api.roberthalfonline.com\/iz\u002Dbranch\u002Dservice\/findOfficeList',
xingPluginScript:'https:\/\/www.xing\u002Dshare.com\/plugins\/login_plugin.js',
xingId:'82ac2657946cd0af3fa4',
signInAppId:'1O0Vy0000002Yle',
signInDomain:'https:\/\/account.roberthalf.com',
otpSendEndpoint:'https:\/\/account.roberthalf.com\/services\/apexrest\/me\/verify\/send',
otpVerifyEndpoint:'https:\/\/account.roberthalf.com\/services\/apexrest\/me\/verify\/verifyCode',
},
"rh_client_payment" :{
profileId:'EB9BBCE6\u002D70F7\u002D41BB\u002DB03B\u002DA8C27BB01D8E',
accessKey: '75aac303597d3275b0b500ad25b06b6f',
maintenanceMode: 'false',
cybersourceEndpoint:'https:\/\/secureacceptance.cybersource.com\/embedded\/pay',
invoiceEndpoint:'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/cpp',
},
"rh_job_search": {
getAndSetSavedJobsEndpoint:'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/get\u002Dand\u002Dset\u002Djob\/query',
jobAlertsEndpoint:'https:\/\/prd\u002Ddr.ma.api.roberthalfonline.com\/job\u002Dalerts\/subscribe',
jobInterestEndpoint:'https:\/\/prd\u002Ddr.jps.api.roberthalfonline.com\/presented\u002Djob\/jobinterest',
jobSearchEndpoint:'https:\/\/prd\u002Ddr.jps.api.roberthalfonline.com\/search',
quickApplyEndpoint:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/quick\u002Dapply',
signInLink:'https:\/\/www.roberthalf.com\/login.rhlogin',
jobSearchLocationTypeaheadEndpoint:'https:\/\/gen.api.roberthalfonline.com\/auto\u002Dcomplete\u002Daem\/search',
feedbackDestinationEditAvailability:'avail',
feedbackDestinationEditLocation:'loc',
feedbackDestinationEditPayPreference:'pref',
feedbackDestinationEditSkills:'skills',
jobInterestFeedback:'https:\/\/prd\u002Ddr.rf.api.roberthalfonline.com\/candidate\u002Dapply\/feedback'
},
"rh_multistep_job_order" :{
leadsProcessingEndpoint:'https:\/\/prd\u002Ddr.lp.api.roberthalfonline.com\/proxy\u002Dlead\u002Dprocessing\/send',
jobFunctionTypeahead:'https:\/\/gen.api.roberthalfonline.com\/auto\u002Dcomplete\u002Daem\/job\u002Dfunction',
skillSearch: 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/sf\u002Dskills\/skillSearch',
skillsRecommendation: 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/sf\u002Dskills\/skillRecommendation',
nearestOfficeValuesEndpoint: '',
sfccRedirectUrl: 'https:\/\/online.roberthalf.com'
},
"rh_candidate_discovery": {
candidateJobTitleTypeaheadEndpoint: 'https:\/\/gen.api.roberthalfonline.com\/auto\u002Dcomplete\u002Daem\/job\u002Dfunction',
candidateLocationTypeaheadEndpoint: 'https:\/\/gen.api.roberthalfonline.com\/auto\u002Dcomplete\u002Daem\/search'
},
"rh_common": {
accountCheckEndpoint:'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/check\u002Dstatus\/check?candidate_email=',
geolocationEndpoint: 'https:\/\/qs01.int\u002Dqs\u002Dgen.api.roberthalfonline.com\/googlegeo\/getReverseGeocode',
personDetailsEndpoint: '\/bin\/personDetails',
isGeolocationTrackingEnabled: '',
recaptchaEndpoint: 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/recaptcha\/verify\u002Dtoken',
page_section: 'Home Page',
page_user_type: 'Client and Candidate',
page_type: 'Other',
isLuxCountry: 'true',
isBearerTokenEnabled: 'true',
page_line_of_business: '\u002D Select a LOB \u002D',
siteEnv: 'prod'
},
"rh_target": {
country: 'fr',
language: 'fr',
adminPath: '/fr/fr/home',
canonicalPath: '/fr/fr',
title: 'Cabinet de recrutement et de recherche d’emploi | Robert Half',
description: "Robert Half met en relation les entreprises et les candidats pour des postes en finance, comptabilité, assistanat, juridique, IT etc. Contactez-nous dès maintenant.",
robots: 'noindex,nofollow',
excludeFromSiteSearch: '',
excludeFromSitemap: '',
excludeFromSiteimprove: '',
pageSection: 'Home Page',
pageType: 'Other',
userFocus: 'Client and Candidate',
industryName :'',
authorName :'By Robert Half',
featuredImagePath: '/content/dam/roberthalf/fr_fr/images/fpo-images/FPO_Rectangle2.jpg',
thumbnailImagePath :'',
publishedDate :'2023-06-06',
categories :'',
pageTags :'',
pageLineOfBusiness: '- Select a LOB -'
}
};
// set personal domains array from file
try {
aemSettings.rh_common.personalDomains = JSON.parse('[\x22gmail.com\x22,\x22yahoo.com\x22,\x22hotmail.com\x22,\x22outlook.com\x22,\x22icloud.com\x22,\x22ymail.com\x22,\x22sbcglobal.net\x22,\x22bellsouth.net\x22,\x22jourrapide.com\x22,\x22comcast.net\x22,\x22cox.net\x22,\x22live.com\x22,\x22att.net\x22,\x22telesyncglobal.com\x22,\x22yelesync.co.us\x22,\x22globalcom.com\x22,\x22msn.com\x22,\x22aol.com\x22,\x22yahoo.co.jp\x22,\x22yahoo.com.br\x22,\x22hotmail.co.uk\x22,\x22yahoo.ae\x22,\x22yahoo.at\x22,\x22yahoo.be\x22,\x22yahoo.ca\x22,\x22yahoo.ch\x22,\x22yahoo.cn\x22,\x22yahoo.co\x22,\x22yahoo.co.id\x22,\x22yahoo.co.il\x22,\x22yahoo.co.in\x22,\x22yahoo.co.kr\x22,\x22yahoo.co.nz\x22,\x22yahoo.co.th\x22,\x22yahoo.co.uk\x22,\x22yahoo.co.za\x22,\x22yahoo.com.ar\x22,\x22yahoo.com.au\x22,\x22yahoo.com.cn\x22,\x22yahoo.com.co\x22,\x22yahoo.com.hk\x22,\x22yahoo.com.is\x22,\x22yahoo.com.mx\x22,\x22yahoo.com.my\x22,\x22yahoo.com.ph\x22,\x22yahoo.com.ru\x22,\x22yahoo.com.sg\x22,\x22yahoo.com.tr\x22,\x22yahoo.com.tw\x22,\x22yahoo.com.vn\x22,\x22yahoo.cz\x22,\x22yahoo.de\x22,\x22yahoo.dk\x22,\x22yahoo.es\x22,\x22yahoo.fi\x22,\x22yahoo.fr\x22,\x22yahoo.gr\x22,\x22yahoo.hu\x22,\x22yahoo.ie\x22,\x22yahoo.in\x22,\x22yahoo.it\x22,\x22yahoo.jp\x22,\x22yahoo.net\x22,\x22yahoo.nl\x22,\x22yahoo.no\x22,\x22yahoo.pl\x22,\x22yahoo.pt\x22,\x22yahoo.ro\x22,\x22yahoo.ru\x22,\x22yahoo.se\x22,\x22hotmail.be\x22,\x22hotmail.ca\x22,\x22hotmail.ch\x22,\x22hotmail.co\x22,\x22hotmail.co.il\x22,\x22hotmail.co.jp\x22,\x22hotmail.co.nz\x22,\x22hotmail.co.za\x22,\x22hotmail.com.ar\x22,\x22hotmail.com.au\x22,\x22hotmail.com.br\x22,\x22hotmail.com.mx\x22,\x22hotmail.com.tr\x22,\x22hotmail.de\x22,\x22hotmail.es\x22,\x22hotmail.fi\x22,\x22hotmail.fr\x22,\x22hotmail.it\x22,\x22hotmail.kg\x22,\x22hotmail.kz\x22,\x22hotmail.my\x22,\x22hotmail.nl\x22,\x22hotmail.ro\x22,\x22hotmail.roor\x22,\x22hotmail.ru\x22,\x22gmail.co.za\x22,\x22gmail.com.au\x22,\x22gmail.com.br\x22,\x22gmail.ru\x22,\x22qq.com\x22,\x22163.com\x22,\x22vip.163.com\x22,\x22126.com\x22,\x22sina.com\x22,\x22sohu.com\x22,\x22tom.com\x22,\x22google.com\x22,\x22263.net\x22,\x22yeah.net\x22,\x22foxmail.com\x22,\x22163.net\x22,\x22sina.cn\x22,\x22139.com\x22,\x22189.cn\x22]');
} catch(err) {
console.error("Error parsing personalDomains: ", err);
aemSettings.rh_common.personalDomains = [];
}
try {
window.aemSettings.rh_regex = JSON.parse("{\x22emailGlobal\x22:\x22(?!.*\\\\.\\\\.)[\\\\\u002D\\\\w.]+@[\\\\w\\\\\u002D.]+\\\\.[A\u002DZa\u002Dz]{2,6}(?:,[\\\\\u002D\\\\w.]+@[\\\\w\\\\\u002D.]+\\\\.[A\u002DZa\u002Dz]{2,4}){0,4}\x22,\x22nameGlobal\x22:\x22^[^\\\\\\\\!\\\\@\\\\$\\\\%\\\\#\\\\\x26\\\\*\\\\:\\\\;\\\\+\\\\=\\\\d]+$\x22,\x22fourDigitZipCode\x22:\x22^\\\\d{4}$\x22,\x22fiveDigitZipCode\x22:\x22^\\\\d{5}$\x22,\x22bePhoneNumber\x22:\x22^(?!(\\\\+32))([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){9,10}$\x22,\x22caZipCode\x22:\x22^([ABCEGHJKLMNPRSTVXYabceghjklmnprstvxy]\\\\d[A\u002DZa\u002Dz]\\\\s?\\\\d[A\u002DZa\u002Dz]\\\\d)$\x22,\x22dePhoneNumber\x22:\x22^(?:\\\\d[\\\\s\\\\\u002D]*){5,12}\\\\d$\x22,\x22gbPhoneNumber\x22:\x22^(?!\\\\+44)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){8,11}$\x22,\x22gbZipCode\x22:\x22^[A\u002DZa\u002Dz]{1,2}[0\u002D9]{1,2}[A\u002DZa\u002Dz]?(\\\\s*[0\u002D9][A\u002DZa\u002Dz]{2})$\x22,\x22NAPhoneNumber\x22:\x22^(?!\\\\+1)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){10}$\x22,\x22auPhoneNumber\x22:\x22^(?!\\\\+61)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){9,10}$\x22,\x22frPhoneNumber\x22:\x22^(?!\\\\+33)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){10}$\x22,\x22brPhoneNumber\x22:\x22^(?!\\\\+55)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){9,12}$\x22,\x22brZipCode\x22:\x22^\\\\d{5}\u002D\\\\d{3}$\x22,\x22nlPhoneNumber\x22:\x22^(?!\\\\+31)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){9,10}$\x22,\x22nlZipCode\x22:\x22^[0\u002D9]{4}\\\\s?([A\u002DZa\u002Dz]{2})?$\x22,\x22hkPhoneNumber\x22:\x22^(?!\\\\+852)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){8}$\x22,\x22sgPhoneNumber\x22:\x22^(?!\\\\+65)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){8}$\x22,\x22sixDigitZipCode\x22:\x22^\\\\d{6}$\x22,\x22chPhoneNumber\x22:\x22^(?!\\\\+41)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){4,13}$\x22,\x22clPhoneNumber\x22:\x22^(?!\\\\+56)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){8,9}$\x22,\x22sevenDigitZipCode\x22:\x22^\\\\d{7}$\x22,\x22cnPhoneNumber\x22:\x22^(?!\\\\+86)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){5,12}$\x22,\x22jpPhoneNumber\x22:\x22^(?!\\\\+81)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){5,13}$\x22,\x22jpZipCode\x22:\x22^\\\\d{3}\u002D?\\\\d{4}$\x22,\x22nzPhoneNumber\x22:\x22^(?!\\\\+64)([\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?\\\\d[\\\\s\\\\.\\\\\u002D\\\\(\\\\)]?){3,10}$\x22,\x22usZipCode\x22:\x22^\\\\d{5}(\u002D?\\\\d{4})?$\x22}");
} catch(err) {
console.error("Error parsing rh_regex: ", err);
}
pageObj.__extrasettings__ = {
language: 'fr',
country: 'fr'
};
try {
window.rhcl_config_overrides = JSON.parse('{}');
} catch(err) {
window.rhcl_config_overrides = {};
console.error("error parsing config overrides: ", err);
}
</script>
<script type="text/javascript">
aemSettings.rh_common.recaptchaEndpoint = 'https:\/\/prd\u002Ddr.gen.api.roberthalfonline.com\/recaptcha\/verify\u002Dtoken';
</script>
<title>Cabinet de recrutement et de recherche d’emploi | Robert Half</title>
<script id="homePageSchema" type="application/ld+json">
{
"@context": "http://schema.org",
"@type":"WebPage",
"name":"Cabinet de recrutement et de recherche d’emploi | Robert Half",
"url":"https://www.roberthalf.com/fr/fr",
"description":"Robert Half met en relation les entreprises et les candidats pour des postes en finance, comptabilité, assistanat, juridique, IT etc. Contactez-nous dès maintenant.",
"isPartOf":{
"@type":"WebSite",
"name":"Robert Half France",
"url":"https://www.roberthalf.com/fr/fr",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://www.roberthalf.com/fr/fr/search?param={search_term_string}"
},
"query-input": "required name=search_term_string"
},
"publisher":{
"@type":"Organization",
"name":"Robert Half",
"legalName":"Robert Half Inc.",
"url":"https://www.roberthalf.com/fr/fr",
"@id":"https://www.roberthalf.com/fr/fr"
}
}
}
</script>
<meta property="og:locale" content="fr_FR"/>
<meta property="og:updated_time" content="2026-01-02T09:51:59+0000"/>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="Robert Half France"/>
<meta property="og:image" content="https://www.roberthalf.com/content/dam/roberthalf/rh.png"/>
<meta property="og:image:type" content="image/png"/>
<meta property="og:image:width" content="500"/>
<meta property="og:image:height" content="500"/>
<meta property="og:image:alt" content="rh-logo"/>
<meta property="og:url" content="https://www.roberthalf.com/fr/fr"/>
<meta property="og:title" content="Cabinet de recrutement et de recherche d’emploi"/>
<meta property="og:description" content="Robert Half met en relation les entreprises et les candidats pour des postes en finance, comptabilité, assistanat, juridique, IT etc. Contactez-nous dès maintenant. "/>
<meta name="title" content="Cabinet de recrutement et de recherche d’emploi"/>
<meta name="description" content="Robert Half met en relation les entreprises et les candidats pour des postes en finance, comptabilité, assistanat, juridique, IT etc. Contactez-nous dès maintenant. "/>
<meta property="og:publication_time" content="2024-02-07T00:22:01+0000"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"name" : "Cabinet de recrutement et de recherche d’emploi",
"url": "https://www.roberthalf.com/fr/fr",
"isPartOf": {
"@type": "WebSite",
"name": "Robert Half",
"url": "https://www.roberthalf.com/fr/fr",
"publisher": {
"type": "Organization",
"name": "Robert Half",
"legalName": "Robert Half Inc.",
"url": "https://www.roberthalf.com/fr/fr",
"@id": "https://www.roberthalf.com/fr/fr"
}
},
"mainEntity": [""],
"mainEntityOfPage": "https://www.roberthalf.com/fr/fr"
}
</script>
<script async defer src="/etc.clientlibs/roberthalf/clientlibs/clientlib-clientId.lc-de3924c5cc55c816e9534f87ef400ea1-lc.min.js"></script>
<script type="text/javascript">
function ready(a){if("function"!==typeof a)throw Error("Argument passed to ready should be a function");"loading"!=document.readyState?a():document.addEventListener?document.addEventListener("DOMContentLoaded",a,{once:!0}):document.attachEvent("onreadystatechange",function(){"loading"!=document.readyState&&a()})};
</script>
<script async defer src="/etc.clientlibs/roberthalf/clientlibs/clientlib-base.lc-9dc1360bb71e05d7d69958512fa97f25-lc.min.js"></script>
<script async src="/etc.clientlibs/core/wcm/components/commons/datalayer/v2/clientlibs/core.wcm.components.commons.datalayer.v2.lc-1e0136bad0acfb78be509234578e44f9-lc.min.js"></script>
<script async src="/etc.clientlibs/core/wcm/components/commons/datalayer/acdl/core.wcm.components.commons.datalayer.acdl.lc-bf921af342fd2c40139671dbf0920a1f-lc.min.js"></script>
<script async src="https://js.clrt.ai/13995.js" type="text/javascript"></script>
</head>
<body class="page basicpage" id="page-309aa6c83b" data-cmp-link-accessibility-enabled data-cmp-link-accessibility-text="s’ouvre dans un nouvel onglet" data-cmp-data-layer-enabled data-cmp-data-layer-name="adobeDataLayer">
<script>
var dataLayerName = 'adobeDataLayer' || 'adobeDataLayer';
window[dataLayerName] = window[dataLayerName] || [];
window[dataLayerName].push({
page: JSON.parse("{\x22page\u002D309aa6c83b\x22:{\x22@type\x22:\x22roberthalf\/components\/structure\/page\/page\x22,\x22repo:modifyDate\x22:\x222026\u002D01\u002D02T09:51:59Z\x22,\x22dc:title\x22:\x22HOME | Home\x22,\x22dc:description\x22:\x22Robert Half met en relation les entreprises et les candidats pour des postes en finance, comptabilité, assistanat, juridique, IT etc. Contactez\u002Dnous dès maintenant. \x22,\x22xdm:template\x22:\x22\/conf\/roberthalf\/settings\/wcm\/templates\/full\u002Dwidth\u002Dpage\u002Dcontent\x22,\x22xdm:language\x22:\x22fr\u002DFR\x22,\x22xdm:tags\x22:[],\x22repo:path\x22:\x22\/content\/roberthalf\/fr\/fr\/home.html\x22}}"),
event:'cmp:show',
eventInfo: {
path: 'page.page\u002D309aa6c83b'
}
});
</script>
<rhcl-base path="https://resources.roberthalfonline.com/rhcl/v42.0.2" locale="fr-FR"></rhcl-base>
<div class="root container-fluid cmp-container">
<div id="container-da5f14ae6e" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="experiencefragment aem-GridColumn aem-GridColumn--default--12">
<div id="experiencefragment-ca4ead7c74" class="cmp-experiencefragment cmp-experiencefragment--header">
<div id="container-12f628738c" class="cmp-container">
<div class="root container-fluid cmp-container">
<div class="cq-placeholder" data-emptytext="Navigation: Header">
</div>
<div id="header-b23d2f65dd" class="cmp-container">
<div id="skipToMainContent" data-skiptomaincontent-label="Passer au contenu principal"></div>
<script>
// needs to run once on any page with a nav header
function identifyFirstComponent() {
try {
const excludedTags = ["RHCL-BLOCK-NAVIGATION", "RHCL-BLOCK-COOKIE-BAR"];
const rhclContentBlocks = Array.from(document.querySelectorAll("body *"))
.filter(
(elem) =>
elem.tagName.startsWith("RHCL-BLOCK") ||
elem.classList.contains("rh-homepage-hero") ||
elem.classList.contains("rh-first-component")
)
.filter((elem) => !excludedTags.includes(elem.tagName));
const maxTries = 10;
let tries = 1;
const nav = document.querySelector("rhcl-block-navigation");
if (nav && nav.getAttribute("background") == "transparent") {
// find first component
if (rhclContentBlocks.length > 0) {
rhclContentBlocks[0].setAttribute(
"data-first-component-padded",
"true"
);
} else {
tries++;
if (tries <= maxTries) {
setTimeout(identifyFirstComponent, 500);
}
}
} else {
const hero = document.querySelector(".rh-homepage-hero");
if (hero) {
hero.removeAttribute("data-first-component-padded");
}
}
} catch (error) {
console.log(error);
}
}
window.ready(() => {
identifyFirstComponent();
});
</script>
<rhcl-block-navigation branding-destination="/fr/fr" account-menu-label="Mon compte" branding-external="false" branding-title="Robert Half" sign-in-label="Se connecter" sign-in-destination="https://bh.roberthalf.fr/" sign-in-external="true" background="white" theme="dark" enable-sign-in-menu="true">
<rhcl-navigation-item slot="navigation-item" destination="/fr/fr/recherche-emploi" label="Recherche d’emploi " cta-heading-label="Trouvez des opportunités professionnelles adaptées à votre profil, avec un accompagnement expert." cta-label="Accéder aux offres d’emploi" cta-destination="/fr/fr/jobs" cta-external="false" cta-variant="primary">
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-findjobs?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-findjobs?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-findjobs?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-findjobs?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-list-base slot="secondary-nav-content">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/offres-emploi">Rechercher des offres d’emploi</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recherche-emploi/candidature-spontanee">Déposer votre CV (candidature spontanée)</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recherche-emploi/alerte-emploi">Créer une alerte emploi</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recherche-emploi/partenariat">Notre méthode pour accompagner les candidats</a>
</rhcl-menu-link>
</rhcl-list-base>
</rhcl-navigation-item>
<rhcl-navigation-item slot="navigation-item" destination="/fr/fr/recrutement" label="Recruter des talents" cta-heading-label="Des solutions de recrutement adaptées à vos enjeux, pour accompagner durablement votre entreprise." cta-label="Décrire mon besoin de recrutement" cta-destination="/fr/fr/recrutement/form" cta-external="false" cta-variant="primary">
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-hiretalent?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-hiretalent?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-hiretalent?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-hiretalent?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-list-base slot="secondary-nav-content" headline="Recherche de talent">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recrutement/interim">Recrutement en intérim et en CDD</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recrutement/cdi">Recrutement en CDI</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recrutement/management-transition">Management de transition</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recrutement/partenariat">Notre méthode de recrutement</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="secondary-nav-content" headline="Chasse de tête">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/recrutement/executive-search">Executive Search et cadres dirigeants</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="gradient-content" headline="Nos spécialisations" layout="column">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/finance-comptabilite">Finance et comptabilité</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/informatique-it">Informatique et IT</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/sales-marketing">Sales et marketing</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/adv-supply-performance-client">ADV, supply et performance client</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/juridique-fiscal">Juridique et fiscal</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/ressources-humaines">Ressources humaines</a>
</rhcl-menu-link>
</rhcl-list-base>
</rhcl-navigation-item>
<rhcl-navigation-item slot="navigation-item" destination="/fr/fr/conseil" label="Solutions de conseil avec Protiviti" cta-heading-label="Découvrez comment les solutions de conseil de Protiviti peuvent vous aider à transformer votre entreprise." cta-label="Explorer les solutions de conseil" cta-destination="/fr/fr/conseil" cta-external="false" cta-variant="primary">
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-exploreconsultingsolutions?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-exploreconsultingsolutions?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-exploreconsultingsolutions?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-exploreconsultingsolutions?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-list-base slot="gradient-content" headline="Spécialisations" layout="column-two">
<rhcl-menu-link slot="item" description="Cloud • Cybersecurité • Data & Analytics • Data Privacy • IA • IT Service Desk">
<a slot="item" href="/fr/fr/conseil/informatique-it">Informatique & IT</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Audit interne • Conformité réglementaire • Conformité en matière de lutte contre la criminalité financière • Gestion des risques • Sarbanes-Oxley">
<a slot="item" href="/fr/fr/conseil/risque">Risque, audit et conformité</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Transformation financière • Optimisation des processus • Finance Technologie & Data • Rapports et Conformité • Optimisation des coûts et des performances">
<a slot="item" href="/fr/fr/conseil/finance-comptabilite">Finance et Comptabilité</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Transformation digitale • Marketing • Technologie et Marketing">
<a slot="item" href="/fr/fr/conseil/digital">Digital, Marketing & Expérience client</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Data Privacy • Consulting Juridique • Services de Transaction">
<a slot="item" href="/fr/fr/conseil/juridique">Juridique et Fiscal</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Centres d’appels • Développement durable • Services opérationnels • Supply chain • Sourcing">
<a slot="item" href="/fr/fr/conseil/assistanat">Assistanat et services</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" description="Transformation RH • Experience salariés • Gestion des talents • Future of Work • Transformation d’entreprise">
<a slot="item" href="/fr/fr/conseil/ressources-humaines">Ressources Humaines</a>
</rhcl-menu-link>
</rhcl-list-base>
</rhcl-navigation-item>
<rhcl-navigation-item slot="navigation-item" destination="/fr/fr/tendances" label="Etudes et tendances" cta-heading-label="Prenez de meilleures décisions en accédant aux dernières études et tendances du marché du recrutement." cta-label="Découvrir nos études" cta-destination="/fr/fr/tendances" cta-external="false" cta-variant="primary">
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-discoverinsights?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-discoverinsights?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-discoverinsights?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-nav-discoverinsights?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-list-base slot="secondary-nav-content">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/guide-salaires">Guide des Salaires 2026</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/enquete-candidats">Enquête ‘Ce que veulent les candidats’ 2025</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/livre-blanc-ia-2025">Livre blanc : l’IA dans les métiers de demain</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/boardroom-navigator">Les comités de direction en 2035</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/a-propos/espace-presse">Espace Presse</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="gradient-content" headline="Tendances" layout="column">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/salaire-recrutement">Salaire et recrutement </a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/travail-flexible">Travail flexible</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/avantage-concurrentiel">Avantage concurrentiel</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/equilibre-vie-pro-vie-perso">Equilibre vie professionnelle / vie privée</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/tendances/diversite-equite-inclusion">Diversité, equité et inclusion </a>
</rhcl-menu-link>
</rhcl-list-base>
</rhcl-navigation-item>
<rhcl-site-search slot="site-search" search-destination="/fr/fr/search?param=:1" max-results="3" theme="dark" prevent-redirect="true">
<a slot="quick-link" href="/fr/fr/offres-emploi"><rhcl-typography variant="body2">Parcourir nos offres d’emploi</rhcl-typography></a>
<a slot="quick-link" href="/fr/fr/recrutement/formulaire"><rhcl-typography variant="body2">Déposer une offre d’emploi</rhcl-typography></a>
<a slot="quick-link" href="/fr/fr/nos-bureaux"><rhcl-typography variant="body2">Nos bureaux</rhcl-typography></a>
</rhcl-site-search>
<rhcl-list-base slot="sign-in-menu" variant="none">
<rhcl-menu-link slot="item" label="Espace personnel" destination="https://account.roberthalf.com/fr/login?a=RH&c=FR&d=fr_FR&language=fr" external="false">
</rhcl-menu-link>
<rhcl-menu-link slot="item" label="Saisie des Temps" destination="https://bh.roberthalf.fr/" external="true">
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list slot="account-menu" data-header-menu-endpoint="/graphql/execute.json/roberthalf/headerMenuItems" data-folder-path="/content/dam/roberthalf/content-fragments/fr_fr/account-menu-links" data-account-menu-config="{"[lux-tokens:lightning-page]":"https://online.roberthalf.com/s","[lux-tokens:fomod-domain]":"https://account.roberthalf.com","[lux-tokens:visualforce-page]":"https://online.roberthalf.com","[lux-tokens:rhdirect-page]":"https://online.roberthalf.com/mpredirect","[site:url]":"https://www.roberthalf.com/"}" headline=""/>
</rhcl-block-navigation>
</div>
<script src="/etc.clientlibs/roberthalf/components/structure/header/clientlibs.lc-d2e0fa001fb7e7555b934a43335ca423-lc.min.js"></script>
</div>
</div>
</div>
</div>
<div class="root container-fluid cmp-container aem-GridColumn aem-GridColumn--default--12">
<div id="container-9042faf978" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="experiencefragment aem-GridColumn aem-GridColumn--default--12">
<div id="experiencefragment-399ce82528" class="cmp-experiencefragment cmp-experiencefragment--alert">
<div id="container-3a9413ebf4" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="notificationbanner text aem-GridColumn aem-GridColumn--default--12">
<rhcl-notification-banner> <rhcl-typography slot="content" variant="body2">Protégez-vous contre les arnaques liées au recrutement : <a href="/fr/fr/avertissement-fraude"><u>apprenez à repérer les tentatives de fraude.</u></a>
</rhcl-typography></rhcl-notification-banner>
</div>
</div>
</div>
</div>
</div>
<div class="root container-fluid cmp-container aem-GridColumn aem-GridColumn--default--12">
<script type="text/javascript">
window.ready(function() {
let homepage = document.querySelector('.rh-homepage-hero');
homepage.componentId = homepage.getAttribute('component-id');
homepage.componentVariant = homepage.getAttribute('component-variant');
homepage.componentTitle = homepage.getAttribute('component-title');
homepage.trackingEnabled = homepage.getAttribute('tracking-enabled');
let searchBar = document.querySelector(".rh-homepage-hero rhcl-search-bar[variant=job-search]");
searchBar.componentParentRef = homepage;
searchBar.addEventListener("rhcl-search-bar-valid", (e) => {
var jobTitle = e.detail.fieldOneValue ?? aemSettings.rh_job_search.allText;
var location = e.detail.fieldTwoValue ?? aemSettings.rh_job_search.allText;
var searchDestination = e.detail.url;
if (searchDestination == undefined || searchDestination == "") return;
function setCookie(name, value) {
var expires = "";
var date = new Date();
date.setTime(date.getTime() + (6 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
if(location != undefined) {
setCookie("l", location);
sessionStorage.removeItem("js_location");
sessionStorage.setItem("js_location", location);
let typeaheads = searchBar?.shadowRoot?.querySelectorAll("div rhcl-typeahead");
let locationTypeahead = typeaheads?.[typeaheads.length - 1];
if (locationTypeahead && locationTypeahead.getAttribute("selected-item-value")) {
let selectedItemValue = locationTypeahead.getAttribute("selected-item-value") || locationTypeahead.selectedItemValue;
sessionStorage.setItem("selected_location", selectedItemValue);
} else {
sessionStorage.removeItem("selected_location");
}
}
if(jobTitle != undefined) {
setCookie("k", jobTitle);
}
function replaceAndCondense(input) {
//replace diacritics and handle foreign chars
let result = input.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
// Replace , . / and space with -
result = result.toLowerCase().replace(/[ ,();.|&%/\\[\]]/g, '-');
// Replace multiple hyphens with a single hyphen
result = result.replace(/-+/g, '-');
// Remove leading hyphen if present
result = result.replace(/^-/, '');
// Remove trailing hyphen if present
result = result.replace(/-$/, '');
return result;
}
var encodedJobTitle = replaceAndCondense(jobTitle);
var encodedLocation = replaceAndCondense(location);
searchDestination = searchDestination.replace(":title", encodedJobTitle).replace(":location", encodedLocation);
window.location.href = searchDestination;
});
});
</script>
<style>
.rh-homepage-hero{position:relative}.rh-homepage-hero h1,.rh-homepage-hero h2,.rh-homepage-hero p{color:#fff;font-family:Noto Sans Display,sans-serif}.rh-homepage-hero h2.rhcl-typography--display6{font-size:9pt}@media screen and (min-width:768px){.rh-homepage-hero h2.rhcl-typography--display6{font-size:14px}}.rh-homepage-hero .rh-homepage-hero__content{padding-top:calc(var(--rhcl-main-navigation-height) + var(--rhcl-spacing-24-x) + var(--rhcl-spacing-20-x))}@media screen and (min-width:768px){.rh-homepage-hero .rh-homepage-hero__content{padding-top:calc(var(--rhcl-main-navigation-height) + var(--rhcl-spacing-14-x))}}.rh-homepage-hero__image-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.rh-homepage-hero__image-wrapper:before{background-image:linear-gradient(12deg,#212325 34%,rgba(33,35,37,.36) 69%,rgba(33,35,37,0) 74%);bottom:0;content:" ";left:0;position:absolute;right:0;top:0;z-index:1}@media screen and (min-width:1024px){.rh-homepage-hero__image-wrapper:before{background-image:linear-gradient(12deg,#212325 32%,rgba(33,35,37,0) 62%)}}.rh-homepage-hero__image-wrapper img{height:auto;width:auto}.rh-homepage-hero__content{min-height:500px;padding-top:calc(var(--rhcl-spacing-24-x) + var(--rhcl-spacing-20-x))}@media screen and (min-width:768px){.rh-homepage-hero__content{padding-top:var(--rhcl-spacing-14-x)}}.rh-homepage-hero__button-wrapper,.rh-homepage-hero__copy-wrapper{--rhcl-typography-color:var(--rhcl-text-white);--rhcl-heading-color:var(--rhcl-text-white)}.rh-homepage-hero__copy-wrapper{margin-bottom:var(--rhcl-spacing-6-x)}@media screen and (min-width:768px){.rh-homepage-hero__copy-wrapper{margin-bottom:calc(var(--rhcl-spacing-20-x) - var(--rhcl-spacing-2-x))}}.rh-homepage-hero__copy-wrapper .rh-homepage-hero__heading{display:block;padding-bottom:var(--rhcl-spacing-4-x)}@media screen and (min-width:768px){.rh-homepage-hero__copy-wrapper .rh-homepage-hero__heading{padding-bottom:var(--rhcl-spacing-8-x)}}.rh-homepage-hero__button-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:var(--rhcl-spacing-6-x)}@media screen and (min-width:768px){.rh-homepage-hero__button-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;gap:var(--rhcl-spacing-8-x)}}.rh-homepage-hero__button-wrapper .rh-homepage-hero__button-heading{display:block;margin-bottom:var(--rhcl-spacing-4-x)}@media screen and (min-width:768px){.rh-homepage-hero__button-wrapper .rh-homepage-hero__button-heading{margin-bottom:var(--rhcl-spacing-8-x)}.rh-homepage-hero__button-wrapper--primary{border-right:1px solid var(--rhcl-text-white);padding-right:var(--rhcl-spacing-8-x)}}.rh-homepage-hero__button-wrapper--secondary .rh-homepage-hero__secondary-button-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:var(--rhcl-spacing-4-x)}@media screen and (min-width:768px){.rh-homepage-hero__button-wrapper--secondary .rh-homepage-hero__secondary-button-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;gap:var(--rhcl-spacing-6-x)}}.rh-homepage-hero__search-wrapper{background-color:var(--rhcl-background-light-default);border-radius:0 0 var(--rhcl-border-radius-lg) var(--rhcl-border-radius-lg);-webkit-box-shadow:var(--rhcl-elevation--box-24);box-shadow:var(--rhcl-elevation--box-24);margin-left:calc(var(--rhcl-spacing-6-x)*-1);margin-right:calc(var(--rhcl-spacing-6-x)*-1);margin-top:var(--rhcl-spacing-6-x);padding:var(--rhcl-spacing-8-x)}@media screen and (min-width:768px){.rh-homepage-hero__search-wrapper{border-radius:var(--rhcl-border-radius-lg);margin-left:unset;margin-right:unset;margin-top:var(--rhcl-spacing-24-x);padding:var(--rhcl-spacing-8-x)}}@media screen and (min-width:1024px){.rh-homepage-hero__search-wrapper{--helper-text-min-height:0px}}.rh-homepage-hero__search-wrapper__no-widget{margin-left:calc(var(--rhcl-spacing-6-x)*-1);margin-right:calc(var(--rhcl-spacing-6-x)*-1);margin-top:var(--rhcl-spacing-6-x);padding:var(--rhcl-spacing-8-x)}@media screen and (min-width:768px){.rh-homepage-hero__search-wrapper__no-widget{margin-left:unset;margin-right:unset;margin-top:var(--rhcl-spacing-24-x);padding:var(--rhcl-spacing-8-x)}}@media screen and (min-width:1024px){.rh-homepage-hero__search-wrapper__no-widget{--helper-text-min-height:0px}}.rh-homepage-hero__no-widget{margin-bottom:var(--rhcl-spacing-10-x);overflow:hidden}@media screen and (min-width:768px){.rh-homepage-hero__no-widget{margin-bottom:var(--rhcl-spacing-12-x)}}@media screen and (min-width:1024px){.rh-homepage-hero__no-widget{margin-bottom:var(--rhcl-spacing-16-x)}}
</style>
<div class="rh-homepage-hero" data-first-component-padded component-id="aem-hero-banner" component-title="Avec les bons talents, tout devient possible" component-variant="Home Page Hero Banner (AEM)" tracking-enabled>
<div class="rh-homepage-hero__container">
<div class="rh-homepage-hero__image-wrapper">
<!-- using dynamic media template -->
<picture>
<source srcset="https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Large-1x?fmt=webp-alpha 1x, https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Large-2x?fmt=webp-alpha 2x" media="(min-width: 1024px)"/>
<source srcset="https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Medium-1x?fmt=webp-alpha 1x, https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Medium-2x?fmt=webp-alpha 2x" media="(min-width: 768px)"/>
<source srcset="https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Small-1x?fmt=webp-alpha 1x, https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Small-2x?fmt=webp-alpha 2x" media="(min-width: 0px)"/>
<img src="https://s7d9.scene7.com/is/image/roberthalfintl/h5_1477775195_5000x1880:Large-1x?fmt=webp-alpha" alt aria-hidden="true" width="767" height="940" loading="eager" fetchpriority="high"/>
</picture>
</div>
<div class="rh-homepage-hero__content rhcl-content-container">
<div class="row">
<div class="rh-homepage-hero__copy-wrapper col-12 col-md-7">
<rhcl-heading class="rh-homepage-hero__heading" modifier="" tag="h1" variant="display1">
<h1>Avec les bons talents, tout devient possible</h1>
</rhcl-heading>
<rhcl-typography class="rh-homepage-hero__subheading" variant="body0">Aidez votre carrière ou votre entreprise à atteindre son plein potentiel. Nous mettons en relation candidats et entreprises partout en France, avec des solutions personnalisées en intérim, CDD, CDI et management de transition.</rhcl-typography>
</div>
</div>
<div class="rh-homepage-hero__button-wrapper">
<div class="rh-homepage-hero__button-wrapper--primary">
<rhcl-heading class="rh-homepage-hero__button-heading" modifier="uppercase" tag="h2" variant="display6">Pour les candidats</rhcl-heading>
<rhcl-button full-width-mobile size="medium" size-md="small" size-sm="medium" theme="dark" variant="primary">
<a slot="link" href="/fr/fr/offres-emploi" target="_self">
Trouver un emploi
</a>
</rhcl-button>
</div>
<div class="rh-homepage-hero__button-wrapper--secondary">
<div>
<rhcl-heading class="rh-homepage-hero__button-heading" modifier="uppercase" tag="h2" variant="display6">Pour les entreprises</rhcl-heading>
</div>
<div class="rh-homepage-hero__secondary-button-container">
<rhcl-button full-width-mobile size="medium" size-md="small" size-sm="medium" theme="dark" variant="secondary">
<a slot="link" href="/fr/fr/recrutement/formulaire" target="_self">
Trouver des talents
</a>
</rhcl-button>
<rhcl-button full-width-mobile size="medium" size-md="small" size-sm="medium" theme="dark" variant="secondary">
<a slot="link" href="/fr/fr/recrutement" target="_self">
Découvrez nos solutions de recrutement
</a>
</rhcl-button>
</div>
</div>
</div>
<div class="rh-homepage-hero__search-wrapper">
<rhcl-search-bar search-label="Recherche" size="small" variant="job-search" theme="concrete" layout="wide" field-two-endpoint="https://gen.api.roberthalfonline.com/auto-complete-aem/search?country=fr&language=fr&max-result=:maxResults&search-term=:value" prevent-redirect search-button-variant="brand" search-destination="/fr/fr/offres-emploi/:location/:title">
</rhcl-search-bar>
</div>
</div>
</div>
</div>
<script>
aemSettings.rh_job_search.allText = 'tous';
</script>
</div></div>
<div class="cmp-rhcl-scrolling-cards-collection-block-wrapper aem-GridColumn aem-GridColumn--default--12">
<style>
div.featuredcard.container{margin-left:12px !important;margin-right:12px !important}
div.featuredcard.container rhcl-content-card{padding-left:12px !important;padding-right:12px !important}
</style>
<div id="scrollingcardscollectionblock-0c2a52a86e" class="cmp-container">
<rhcl-block-scrolling-cards-collection logo="false" card-variant="featured-content">
<h2 slot="headline">Tendances et études sur le marché de l’emploi</h2>
<div class="featuredcard container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" icon="users" variant="featured-content" layout="trending-insights">
<a slot="headline" href="/fr/fr/tendances/guide-salaires" target="_self">Guide des salaires 2026</a>
<span slot="copy">Découvrez une analyse approfondie des tendances du recrutement par spécialisation dans notre guide des salaires 2026.</span>
<!-- using dynamic media template -->
<img slot="image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 570px,(min-width: 768px) 476px,(min-width: 0px) 335px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-2179743047?$Rectangle2-Large-1x$&fmt=webp-alpha 570w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-2179743047?$Rectangle2-Medium-1x$&fmt=webp-alpha 476w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-2179743047?$Rectangle2-Small-1x$&fmt=webp-alpha 335w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-2179743047?$Rectangle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true" width="400" height="240"/>
</rhcl-content-card>
</div>
<div class="featuredcard container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" icon="users" variant="featured-content" layout="trending-insights">
<a slot="headline" href="/fr/fr/tendances/enquete-candidats" target="_self">Enquête Candidats 2025</a>
<span slot="copy">Etude effectuée auprès des salariés français, sur les tendances qui caractérisent le marché actuel du recrutement et son dynamisme.</span>
<!-- using dynamic media template -->
<img slot="image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 570px,(min-width: 768px) 476px,(min-width: 0px) 335px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-as367959700?$Rectangle2-Large-1x$&fmt=webp-alpha 570w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-as367959700?$Rectangle2-Medium-1x$&fmt=webp-alpha 476w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-as367959700?$Rectangle2-Small-1x$&fmt=webp-alpha 335w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-as367959700?$Rectangle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true" width="400" height="240"/>
</rhcl-content-card>
</div>
<div class="featuredcard container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" icon="users" variant="featured-content" layout="trending-insights">
<a slot="headline" href="/fr/fr/tendances/livre-blanc-ia-2025" target="_self">L’IA dans les métiers de demain</a>
<span slot="copy">Découvrez notre dernier livre blanc, une analyse approfondie de l’impact de l’IA sur les fonctions support et les métiers.</span>
<!-- using dynamic media template -->
<img slot="image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 570px,(min-width: 768px) 476px,(min-width: 0px) 335px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-00007-1233182203?$Rectangle2-Large-1x$&fmt=webp-alpha 570w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-00007-1233182203?$Rectangle2-Medium-1x$&fmt=webp-alpha 476w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-00007-1233182203?$Rectangle2-Small-1x$&fmt=webp-alpha 335w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-00007-1233182203?$Rectangle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true" width="400" height="240"/>
</rhcl-content-card>
</div>
<div class="featuredcard container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" icon="users" variant="featured-content" layout="trending-insights">
<a slot="headline" href="/fr/fr/tendances/boardroom-navigator" target="_self">Les objectifs du Comité de Direction pour 2035</a>
<span slot="copy">Notre livre blanc explore comment les dirigeants et investisseurs européens se préparent pour la prochaine décennie, et les actions clés à engager d'ici 2035.</span>
<!-- using dynamic media template -->
<img slot="image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 570px,(min-width: 768px) 476px,(min-width: 0px) 335px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-boardroomnavigator-2025?$Rectangle2-Large-1x$&fmt=webp-alpha 570w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-boardroomnavigator-2025?$Rectangle2-Medium-1x$&fmt=webp-alpha 476w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-boardroomnavigator-2025?$Rectangle2-Small-1x$&fmt=webp-alpha 335w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-boardroomnavigator-2025?$Rectangle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true" width="400" height="240"/>
</rhcl-content-card>
</div>
<div class="featuredcard container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" icon="users" variant="featured-content" layout="trending-insights">
<a slot="headline" href="/fr/fr/tendances/etudes" target="_self">Etudes et ressources</a>
<span slot="copy">Consultez nos études et ressources pour optimiser vos recrutements, vos compétences managériales et développer votre carrière.</span>
<!-- using dynamic media template -->
<img slot="image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 570px,(min-width: 768px) 476px,(min-width: 0px) 335px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-35007-1870485526?$Rectangle2-Large-1x$&fmt=webp-alpha 570w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-35007-1870485526?$Rectangle2-Medium-1x$&fmt=webp-alpha 476w,https://s7d9.scene7.com/is/image/roberthalfintl/rt2-35007-1870485526?$Rectangle2-Small-1x$&fmt=webp-alpha 335w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt2-35007-1870485526?$Rectangle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true" width="400" height="240"/>
</rhcl-content-card>
</div>
</rhcl-block-scrolling-cards-collection>
</div>
</div>
<div class="root container-fluid cmp-container rhcl__background--secondary rhcl__background-style--curved rhcl__accent-theme--primary rhcl__accent-outline--none rhcl__theme--light aem-GridColumn aem-GridColumn--default--12">
<div class="cq-placeholder" data-emptytext="PC.001 Paired Content Block: Split"></div>
<script type="text/javascript">
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,d){a.raw=d;return a};
window.ready(function(){document.querySelectorAll("rhcl-block-paired-content[variant\x3d'split']").forEach(function(a){var d=a.parentElement,e=a.querySelector("rhcl-content-list");e&&e.addEventListener("rhcl-typography-link-clicked",function(c){c.preventDefault();e.querySelectorAll("a[data-disclaimer-link-item-popup]").forEach(function(b){b.textContent===c.detail&&(b=b.getAttribute("data-disclaimer-identifier"),d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0))})});document.querySelectorAll("a[data-disclaimer-popup]").forEach(function(c){c.addEventListener("click",
function(b){b.preventDefault();b=c.getAttribute("data-disclaimer-identifier");d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0)})})})});
</script>
<rhcl-block-paired-content variant="split" layout="media-left" accent-variant="image-rounded" theme="light" primary-cta-style-override="primary" secondary-cta-style-override="secondary" background="secondary" background-style="curved" accent-theme="primary" accent-outline="none" accent-alignment="top">
<h2 slot="headline">Trouvez le talent dont vous avez besoin</h2>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 840px,(min-width: 768px) 619px,(min-width: 0px) 420px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1893582901?$Rectangle1-Large-1x$&fmt=webp-alpha 840w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1893582901?$Rectangle1-Medium-1x$&fmt=webp-alpha 619w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1893582901?$Rectangle1-Small-1x$&fmt=webp-alpha 420w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1893582901?$Rectangle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-content-list slot="list">
<rhcl-content-list-item slot="item">Accédez au réseau de candidats qualifiés de Robert Half pour vos recrutements en intérim, CDD, CDI et management de transition</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Identifiez rapidement des talents disposant des compétences techniques et de l’expérience nécessaires à vos enjeux</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Confiez-nous votre recrutement : nous sélectionnons pour vous des candidats adaptés, quel que soit le niveau d’expérience recherché</rhcl-content-list-item>
</rhcl-content-list>
<a slot="primary-cta" href="/fr/fr/recrutement/formulaire" target="_self">Décrire mon besoin</a>
<a slot="secondary-cta" href="/fr/fr/recrutement" target="_self">En savoir plus</a>
</rhcl-block-paired-content>
</div>
<div class="root container-fluid cmp-container rhcl__background--none rhcl__background-style--curved rhcl__accent-theme--primary rhcl__accent-outline--none rhcl__theme--light aem-GridColumn aem-GridColumn--default--12">
<div class="cq-placeholder" data-emptytext="PC.001 Paired Content Block: Split"></div>
<script type="text/javascript">
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,d){a.raw=d;return a};
window.ready(function(){document.querySelectorAll("rhcl-block-paired-content[variant\x3d'split']").forEach(function(a){var d=a.parentElement,e=a.querySelector("rhcl-content-list");e&&e.addEventListener("rhcl-typography-link-clicked",function(c){c.preventDefault();e.querySelectorAll("a[data-disclaimer-link-item-popup]").forEach(function(b){b.textContent===c.detail&&(b=b.getAttribute("data-disclaimer-identifier"),d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0))})});document.querySelectorAll("a[data-disclaimer-popup]").forEach(function(c){c.addEventListener("click",
function(b){b.preventDefault();b=c.getAttribute("data-disclaimer-identifier");d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0)})})})});
</script>
<rhcl-block-paired-content variant="split" layout="media-right" accent-variant="image-rounded" theme="light" primary-cta-style-override="primary" secondary-cta-style-override="secondary" background="none" background-style="curved" accent-theme="primary" accent-outline="none" accent-alignment="top">
<h2 slot="headline">Nos solutions de conseil pour améliorer votre impact business</h2>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 840px,(min-width: 768px) 619px,(min-width: 0px) 420px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1895357617?$Rectangle1-Large-1x$&fmt=webp-alpha 840w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1895357617?$Rectangle1-Medium-1x$&fmt=webp-alpha 619w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1895357617?$Rectangle1-Small-1x$&fmt=webp-alpha 420w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1895357617?$Rectangle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-content-list slot="list">
<rhcl-content-list-item slot="item">Définir une vision claire et une stratégie alignée avec vos enjeux organisationnels et opérationnels</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Améliorer durablement la performance grâce à des technologies adaptées et des processus optimisés</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Mettre en œuvre un plan d’action structuré ou piloter efficacement vos opérations courantes</rhcl-content-list-item>
</rhcl-content-list>
<a slot="primary-cta" href="/fr/fr/recrutement/formulaire" target="_self">Décrire mon besoin</a>
<a slot="secondary-cta" href="/fr/fr/conseil" target="_self">En savoir plus</a>
</rhcl-block-paired-content>
</div>
<div class="root container-fluid cmp-container rhcl__background--secondary rhcl__background-style--curved rhcl__accent-theme--primary rhcl__accent-outline--none rhcl__theme--light aem-GridColumn aem-GridColumn--default--12">
<div class="cq-placeholder" data-emptytext="PC.001 Paired Content Block: Split"></div>
<script type="text/javascript">
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,d){a.raw=d;return a};
window.ready(function(){document.querySelectorAll("rhcl-block-paired-content[variant\x3d'split']").forEach(function(a){var d=a.parentElement,e=a.querySelector("rhcl-content-list");e&&e.addEventListener("rhcl-typography-link-clicked",function(c){c.preventDefault();e.querySelectorAll("a[data-disclaimer-link-item-popup]").forEach(function(b){b.textContent===c.detail&&(b=b.getAttribute("data-disclaimer-identifier"),d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0))})});document.querySelectorAll("a[data-disclaimer-popup]").forEach(function(c){c.addEventListener("click",
function(b){b.preventDefault();b=c.getAttribute("data-disclaimer-identifier");d.querySelector("div#"+b+" rhcl-modal").setAttribute("open",!0)})})})});
</script>
<rhcl-block-paired-content variant="split" layout="media-left" accent-variant="image-rounded" list-type="check" theme="light" primary-cta-style-override="primary" secondary-cta-style-override="secondary" background="secondary" background-style="curved" accent-theme="primary" accent-outline="none" accent-alignment="top">
<h1 slot="headline">Faites évoluer votre carrière à votre rythme</h1>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 840px,(min-width: 768px) 619px,(min-width: 0px) 420px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1029092947?$Rectangle1-Large-1x$&fmt=webp-alpha 840w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1029092947?$Rectangle1-Medium-1x$&fmt=webp-alpha 619w,https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1029092947?$Rectangle1-Small-1x$&fmt=webp-alpha 420w" src="https://s7d9.scene7.com/is/image/roberthalfintl/rt1-1029092947?$Rectangle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<rhcl-content-list slot="list">
<rhcl-content-list-item slot="item">Recevez par email des offres d’emploi ciblées, adaptées à vos compétences, votre expérience et vos objectifs professionnels</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Gagnez en visibilité auprès d’un large réseau d’entreprises et accédez à tous types d’opportunités : télétravail, hybride ou présentiel, en intérim, CDD ou CDI</rhcl-content-list-item>
<rhcl-content-list-item slot="item">Bénéficiez d’une rémunération attractive, d’avantages compétitifs et d’un accès à des formations gratuites en ligne</rhcl-content-list-item>
</rhcl-content-list>
<a slot="primary-cta" href="/fr/fr/recherche-emploi/candidature-spontanee" target="_self">Recevoir des offres d’emploi</a>
<a slot="secondary-cta" href="/fr/fr/recherche-emploi" target="_self">En savoir plus</a>
</rhcl-block-paired-content>
</div>
<div class="experiencefragment aem-GridColumn aem-GridColumn--default--12">
<div id="experiencefragment-421f1c03a0" class="cmp-experiencefragment cmp-experiencefragment--tcb">
<div id="container-60fc9d53df" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="cmp-rhcl-tabbed-content-block-wrapper aem-GridColumn aem-GridColumn--default--12">
<div id="tabbedcontentblock-772bd12a2c" class="cmp-container">
<rhcl-block-tabbed-content variant="horizontal" layout="media-right">
<h2 slot="headline">Optez pour une solution de recrutement flexible et adaptée à votre spécialisation</h2>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Finance et Comptabilité">
<span slot="label">Finance et Comptabilité</span>
<rhcl-typography slot="copy">Vous êtes à la recherche de talents en Finance et Comptabilité ? Trouvez dès maintenant des candidats pour un contrat en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/consolideur" target="_self">Consolideur</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/controleur-de-gestion" target="_self">Contrôleur de gestion</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/comptable-unique" target="_self">Comptable unique</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/controleur-financier" target="_self">Contrôleur financier</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/auditeur-interne" target="_self">Auditeur interne</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/expert-comptable" target="_self">Expert comptable</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/finance-comptabilite" target="_self">Trouvez des talents spécialisés en Finance et Comptabilité</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Informatique et IT">
<span slot="label">Informatique et IT</span>
<rhcl-typography slot="copy">Vous recherchez des talents spécialisés dans l’IT ? Trouvez des candidats dès maintenant pour des postes en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/web-designer" target="_self">Web designer</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/developpeur" target="_self">Développeur</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/lead-developpeur" target="_self">Lead développeur</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/business-developer" target="_self">Business developer</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/web-analyst" target="_self">Web analyst</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/ingenieur-systemes-et-reseaux" target="_self">Ingénieur systèmes et réseaux</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/informatique-it" target="_self">En savoir plus sur nos solutions de recrutement IT</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Assistanat et Service clients">
<span slot="label">Assistanat et Service clients</span>
<rhcl-typography slot="copy">Vous recherchez des talents spécialisés dans l’assistanat et le service client ? Trouvez des candidats dès maintenant pour des postes en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/assistant-logistique" target="_self">Assistant logistique</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/assistant-adv" target="_self">Assistant ADV</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/assistant-administratif" target="_self">Assistant(e) administratif</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/assistante-de-direction" target="_self">Assistant(e) de direction</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/assistant-ressources-humaines" target="_self">Assistant RH</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/operateur-de-saisie" target="_self">Opérateur de saisie</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/adv-supply-performance-client" target="_self">Trouvez des talents spécialisés en assistanat</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Sales et Marketing">
<span slot="label">Sales et Marketing</span>
<rhcl-typography slot="copy">Vous recherchez des talents spécialisés dans le commerce et le marketing ? Trouvez des candidats dès maintenant pour des postes en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/product-owner-product-manager-pmo" target="_self">Product owner / manager</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/marketingdigital-manager" target="_self">Chief marketing officer</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/sales-executive" target="_self">Account executive</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/directeur-commercial" target="_self">Directeur Commercial</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/seo-manager" target="_self">SEO manager</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/chef-de-projet-digital" target="_self">Chef de projet digital</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/sales-marketing" target="_self">Découvrir nos solutions de recrutement en sales et marketing</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Juridique et Fiscal">
<span slot="label">Juridique et Fiscal</span>
<rhcl-typography slot="copy">Vous recherchez des talents spécialisés dans le domaine juridique et fiscal ? Trouvez des candidats dès maintenant pour des postes en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/directeur-fiscal" target="_self">Directeur fiscal</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/responsable-directeur-conformite" target="_self">Responsable conformité</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/juriste" target="_self">Juriste</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/responsable-juridique" target="_self">Responsable juridique</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/juriste-financier" target="_self">Juriste financier</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/fiscaliste" target="_self">Fiscaliste</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/juridique-fiscal" target="_self">En savoir plus sur nos solutions de recrutement en juridique</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
<div class="tabbedcontenthorizontal container responsivegrid" data-aem-wrapper="true" slot="tab">
<rhcl-tab-item slot="tab" label="Ressources humaines">
<span slot="label">Ressources humaines</span>
<rhcl-typography slot="copy">Vous recherchez des talents spécialisés dans les ressources humaines ? Trouvez des candidats dès maintenant pour des postes en intérim, CDD, CDI ou management de transition.</rhcl-typography>
<rhcl-content-list headline="Les postes les plus recherchés" layout="column" variant="link" slot="list" decorative="false">
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/directeur-des-ressources-humaines" target="_self">Directeur(trice) des RH</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/charge-de-recrutement" target="_self">Chargé de recrutement</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/gestionnaire-de-paie" target="_self">Gestionnaire paie</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/responsable-du-recrutement" target="_self">Responsable recrutement</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/responsable-paie-administration-du-personnel" target="_self">Responsable rémunération</a></rhcl-content-list-item>
<rhcl-content-list-item slot="item"><a href="/fr/fr/details-emploi/responsable-paie-administration-du-personnel" target="_self">Responsable administration du personnel</a></rhcl-content-list-item>
</rhcl-content-list>
<a slot="cta" href="/fr/fr/ressources-humaines" target="_self">Découvrez nos solutions de recrutement en RH</a>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 480px,(min-width: 768px) 336px,(min-width: 0px) 317px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha 480w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Medium-1x$&fmt=webp-alpha 336w,https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Small-1x$&fmt=webp-alpha 317w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq2-00015-1876543330?$Squircle2-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00014-1732068994?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
<!-- using dynamic media template -->
<img slot="accent-image" loading="lazy" fetchpriority="low" sizes="(min-width: 1024px) 307px,(min-width: 768px) 230px,(min-width: 0px) 288px" srcset="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha 307w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Medium-1x$&fmt=webp-alpha 230w,https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Small-1x$&fmt=webp-alpha 288w" src="https://s7d9.scene7.com/is/image/roberthalfintl/sq1-00013-1918147928?$Squircle1-Large-1x$&fmt=webp-alpha" alt aria-hidden="true"/>
</rhcl-tab-item>
</div>
</rhcl-block-tabbed-content>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cmp-rhcl-scrolling-cards-collection-block-wrapper aem-GridColumn aem-GridColumn--default--12">
<style>
div.featuredcard.container{margin-left:12px !important;margin-right:12px !important}
div.featuredcard.container rhcl-content-card{padding-left:12px !important;padding-right:12px !important}
</style>
<div id="scrollingcardscollectionblock-8d676f3070" class="cmp-container">
<rhcl-block-scrolling-cards-collection logo="true" card-variant="testimonial">
<h2 slot="headline">Témoignages</h2>
<div class="cardtestimonial container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="✩✩✩✩✩ - “Contente du service qui a été rapide et efficace. J'ai vraiment eu l'impression d'avoir été écouté dans le besoin de recrutement.” " cta-external="true" layout="long-quote" enable-author-image="false" variant="testimonial" class="hydrated">
</rhcl-content-card>
</div>
<div class="cardtestimonial container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="✩✩✩✩✩ - “Mes besoins ont de suite été pris en compte. Les profils proposés correspondaient parfaitement à mes besoins.”" cta-external="true" layout="long-quote" job-title=" - Directeur Financier" enable-author-image="false" variant="testimonial" class="hydrated">
</rhcl-content-card>
</div>
<div class="cardtestimonial container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="✩✩✩✩✩ - “Trés bonne compréhension du métier de comptable et de nos besoins, suivi régulier sur la qualité du travail de la personne en intérim”" cta-external="true" layout="long-quote" job-title=" - Comptable fournisseurs" enable-author-image="false" variant="testimonial" class="hydrated">
</rhcl-content-card>
</div>
<div class="cardtestimonial container responsivegrid" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="✩✩✩✩✩ - “Des consultants spécialisés dans un domaine en particulier. Une bonne connaissance du marché. Un processus de recrutement de qualité. Très professionnel de A à Z.”" cta-external="true" layout="long-quote" job-title="- Talent Acquisition" enable-author-image="false" variant="testimonial" class="hydrated">
</rhcl-content-card>
</div>
</rhcl-block-scrolling-cards-collection>
</div>
</div>
<div class="experiencefragment aem-GridColumn aem-GridColumn--default--12">
<div id="experiencefragment-9cd9275e12" class="cmp-experiencefragment cmp-experiencefragment--accolades">
<div id="container-fd4288f5d0" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="cmp-rhcl-accolades-block-wrapper aem-GridColumn aem-GridColumn--default--12">
<div id="accoladesblock-2479378665" class="cmp-container">
<rhcl-block-accolades>
<h2 slot="headline">Vous êtes au bon endroit </h2>
<a slot="cta" href="/fr/fr/a-propos" target="_self">Voir plus </a>
<div class="accolade contentcard teaser" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="2026">
<span slot="headline">Fortune World’s Most Admired
</span>
</rhcl-content-card>
</div>
<div class="accolade contentcard teaser" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="2025">
<span slot="headline">Forbes’ World’s Best Employers
</span>
</rhcl-content-card>
</div>
<div class="accolade contentcard teaser" data-aem-wrapper="true" slot="card">
<rhcl-content-card slot="card" copy="2025">
<span slot="headline">Forbes’ World’s Top Companies for Women
</span>
</rhcl-content-card>
</div>
</rhcl-block-accolades>
<!-- This block only uses the secondary button type on the RHCL side -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="experiencefragment aem-GridColumn aem-GridColumn--default--12">
<div id="experiencefragment-8082353bc2" class="cmp-experiencefragment cmp-experiencefragment--footer">
<div id="container-5cb4ff41a3" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="footer aem-GridColumn aem-GridColumn--default--12">
<div id="linklist_4_modal_5">
<div class="xfpage page basicpage">
<!--<sly data-sly-resource="contexthub"/>-->
<div id="container-49071ca9ab" class="cmp-container">
<div class="aem-Grid aem-Grid--12 aem-Grid--default--12">
<div class="root container-fluid cmp-container aem-GridColumn aem-GridColumn--default--12">
<script type="text/javascript">
window.ready(function(b){var a=document.querySelector("rhcl-modal[data-disclaimer-modal]");a&&a.querySelector("rhcl-button")&&a.querySelector("rhcl-button").addEventListener("rhcl-button-clicked",function(){a.setAttribute("open",!1)})});
</script>
<rhcl-modal behavior="close" variant="popup" data-disclaimer-modal>
<rhcl-typography> Vous quittez le site de Robert Half France et serez redirigé vers le site de Robert Half USA.
<p style=" text-align: center;"><a href="/us/en/about/investor-center">Continuer</a>
</p></rhcl-typography>
</rhcl-modal>
</div>
</div>
</div>
</div>
</div>
<rhcl-footer logo-destination="/fr/fr" variant="default">
<rhcl-list-base slot="menu" headline="Services" headline-tag="h2">
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_1">
<a slot="item" href="/fr/fr/offres-emploi">Offres d'emploi</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_2">
<a slot="item" href="/fr/fr/recrutement/interim">Talents en intérim et CDD</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_3">
<a slot="item" href="/fr/fr/recrutement/cdi">Talents en CDI</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_4">
<a slot="item" href="/fr/fr/recrutement/management-transition">Talents en management de transition</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_5">
<a slot="item" href="/fr/fr/conseil">Solutions de conseil</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_1_modal_6">
<a slot="item" href="/fr/fr/recrutement/teletravail">Talents en télétravail</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="menu" headline="Domaines d’expertises" headline-tag="h2">
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_1">
<a slot="item" href="/fr/fr/finance-comptabilite">Finance et comptabilité</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_2">
<a slot="item" href="/fr/fr/informatique-it">Informatique et IT</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_3">
<a slot="item" href="/fr/fr/sales-marketing">Sales et marketing</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_4">
<a slot="item" href="/fr/fr/adv-supply-performance-client">Assistanat et fonctions support</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_5">
<a slot="item" href="/fr/fr/juridique-fiscal">Juridique et fiscal</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_2_modal_6">
<a slot="item" href="/fr/fr/ressources-humaines">Ressources humaines</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="menu" headline="Liens utiles" headline-tag="h2">
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_1">
<a slot="item" href="/fr/fr/tendances">Etudes et tendances</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_2">
<a slot="item" href="/fr/fr/details-emploi-tous">Fiches métiers</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_3">
<a slot="item" href="/fr/fr/tendances/guide-salaires">Guide des salaires</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_4">
<a slot="item" href="/fr/fr/interimaire">Informations intérimaires</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_5">
<a slot="item" href="/fr/fr/contact">Centre d'information</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_6">
<a slot="item" href="/fr/fr/tendances/newsletter">S'abonner à la newsletter</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_3_modal_7">
<a slot="item" href="/fr/fr/recherche-emploi/alerte-emploi">Créer une alerte emploi</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="menu" headline="A propos" headline-tag="h2">
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_1">
<a slot="item" href="/fr/fr/a-propos">A propos de Robert Half</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_2">
<a slot="item" href="/fr/fr/a-propos/leadership">Leadership</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_3">
<a slot="item" href="/fr/fr/rejoindre-robert-half">Rejoignez-nous</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_4">
<a slot="item" href="/fr/fr/nos-bureaux">Bureaux</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-popup data-modal-identifier="linklist_4_modal_5">
<a slot="item" href="#">Investor center</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_6">
<a slot="item" href="/fr/fr/a-propos/espace-presse">Espace presse</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_7">
<a slot="item" href="/fr/fr/a-propos/histoire-distinctions/nos-marques">Nos marques</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" data-modal-identifier="linklist_4_modal_8">
<a slot="item" href="/fr/fr/a-propos/partenariats">Labels et partenaires</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="social-menu">
<rhcl-menu-link slot="item" icon="facebook" description="Facebook">
<a slot="item" href="https://www.facebook.com/robert.half.france"></a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" icon="linkedin" description="LinkedIn">
<a slot="item" href="https://www.linkedin.com/company/1681"></a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" icon="twitter" description="Twitter">
<a slot="item" href="https://twitter.com/RobertHalfFR"></a>
</rhcl-menu-link>
<rhcl-menu-link slot="item" icon="youtube" description="Youtube">
<a slot="item" href="https://www.youtube.com/user/RobertHalfFR"></a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-list-base slot="legal-menu">
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/protection-donnees-personnelles">Protection des données personnelles</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/conditions-utilisation">Conditions d’utilisation</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/information-societe">Informations sur la société</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/conditions-utilisation#cookies">Cookies</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/avertissement-fraude">Alerte à la fraude</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/politique-denonciation">Politique de dénonciation</a>
</rhcl-menu-link>
<rhcl-menu-link slot="item">
<a slot="item" href="/fr/fr/webmaster-feedback">Commentaires au webmaster</a>
</rhcl-menu-link>
</rhcl-list-base>
<rhcl-typography slot="copyright">Robert Half Inc.
</rhcl-typography>
<rhcl-country-selector slot="locale-selector" name="locale">
<a data-locale="en-AU" href="https://www.roberthalf.com/au/en" slot="link">
Australia - English
</a>
<a data-locale="en-BE" href="https://www.roberthalf.com/be/en" slot="link">
Belgium - English
</a>
<a data-locale="nl-BE" href="https://www.roberthalf.com/be/nl" slot="link">
Belgium - Nederlands
</a>
<a data-locale="fr-BE" href="https://www.roberthalf.com/be/fr" slot="link">
Belgium - Français
</a>
<a data-locale="pt-BR" href="https://www.roberthalf.com/br/pt" slot="link">
Brazil - Português
</a>
<a data-locale="en-CA" href="https://www.roberthalf.com/ca/en" slot="link">
Canada - English
</a>
<a data-locale="fr-CA" href="https://www.roberthalf.com/ca/fr" slot="link">
Canada - Français
</a>
<a data-locale="es-CL" href="https://www.roberthalf.com/cl/es" slot="link">
Chile - Español
</a>
<a data-locale="en-CN" href="https://www.roberthalf.cn/cn/en" slot="link">
China - English
</a>
<a data-locale="zh-CN" href="https://www.roberthalf.cn/cn/zh" slot="link">
China - 中文
</a>
<a data-locale="fr-FR" href="https://www.roberthalf.com/fr/fr" slot="link">
France - Français
</a>
<a data-locale="de-DE" href="https://www.roberthalf.com/de/de" slot="link">
Germany - Deutsch
</a>
<a data-locale="en-HK" href="https://www.roberthalf.com/hk/en" slot="link">
Hong Kong, China - English
</a>
<a data-locale="en-IE" href="https://www.roberthalf.com/ie/en" slot="link">
Ireland - English
</a>
<a data-locale="it-IT" href="https://www.roberthalf.com/it/it" slot="link">
Italy - Italian
</a>
<a data-locale="en-JP" href="https://www.roberthalf.com/jp/en" slot="link">
Japan - English
</a>
<a data-locale="ja-JP" href="https://www.roberthalf.com/jp/ja" slot="link">
Japan - 日本語
</a>
<a data-locale="en-LU" href="https://www.roberthalf.com/lu/en" slot="link">
Luxembourg - English
</a>
<a data-locale="fr-LU" href="https://www.roberthalf.com/lu/fr" slot="link">
Luxembourg - Français
</a>
<a data-locale="en-NL" href="https://www.roberthalf.com/nl/en" slot="link">
Netherlands - English
</a>
<a data-locale="nl-NL" href="https://www.roberthalf.com/nl/nl" slot="link">
Netherlands - Nederlands
</a>
<a data-locale="en-NZ" href="https://www.roberthalf.com/nz/en" slot="link">
New Zealand - English
</a>
<a data-locale="en-SG" href="https://www.roberthalf.com/sg/en" slot="link">
Singapore - English
</a>
<a data-locale="de-CH" href="https://www.roberthalf.com/ch/de" slot="link">
Switzerland - Deutsch
</a>
<a data-locale="en-CH" href="https://www.roberthalf.com/ch/en" slot="link">
Switzerland - English
</a>
<a data-locale="fr-CH" href="https://www.roberthalf.com/ch/fr" slot="link">
Switzerland - Français
</a>
<a data-locale="en-AE" href="https://www.roberthalf.com/ae/en" slot="link">
United Arab Emirates - English
</a>
<a data-locale="en-GB" href="https://www.roberthalf.com/gb/en" slot="link">
United Kingdom - English
</a>
<a data-locale="en-US" href="https://www.roberthalf.com/us/en" slot="link">
United States - English
</a>
</rhcl-country-selector>
</rhcl-footer>
<rhcl-back-to-top-button></rhcl-back-to-top-button>
<style>
rhcl-back-to-top-button{--rhcl-floating-button-bottom:260px}
</style>
<script type="text/javascript">
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,b){a.raw=b;return a};window.addEventListener("rhcl-menu-link-clicked",function(a){a.preventDefault();a=a.composedPath()[0];a.hasAttribute("data-modal-popup")&&(a=a.getAttribute("data-modal-identifier"),document.querySelector("div#"+a+" rhcl-modal").setAttribute("open",!0))});
document.addEventListener("rhcl-locale-selector-item-clicked",function(a){a&&a.detail&&(window.location.href=a.detail)});
</script>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<link rel="preload" href="https://rh.my.salesforce-sites.com/liveagent/EinsteinBotEmbedCSS" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<noscript><link rel="stylesheet" href="https://rh.my.salesforce-sites.com/liveagent/EinsteinBotEmbedCSS"/></noscript>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9e2117653aad5038',t:'MTc3NDQ3NTAwOA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516" integrity="sha512-8DS7rgIrAmghBFwoOTujcf6D9rXvH8xm8JQ1Ja01h9QX8EzXldiszufYa4IFfKdLUKTTrnSFXLDkUEOTrZQ8Qg==" data-cf-beacon='{"version":"2024.11.0","token":"b82eb896f266478ea46775726c8aea33","server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>