CINXE.COM

Robert Half Canada - Accueil de la salle de nouvelles

<!doctype html> <html lang="en-US"> <head> <!-- begin spin_special_output(head_start) --> <script type="text/javascript" src="js/jquery-webdriver.js" wd_script_id="jquery-webdriver.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <script type="text/javascript" src="js/webdriver.js" wd_script_id="webdriver.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <script type="text/javascript" src="js/wd_scriptloader.js" wd_script_id="wd_scriptloader.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <script type="text/javascript" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg==">webDriver.push_jQuery();</script> <script type="text/javascript" src="js/jquery-ui.js" wd_script_id="jquery-ui.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <script type="text/javascript" src="js/wd_resize.js" wd_script_id="wd_resize.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <link href="css/wd_modal.css" type="text/css" rel="stylesheet" wd_script_id="wd_modal.css"> <link href="css/wd_wcag.css" type="text/css" rel="stylesheet" wd_script_id="wd_wcag.css"> <script type="text/javascript" wd_script_id="wd_modal_script" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="> (function($) { webDriver.resizeModal = function() { $(this).find(".wd_modal").wd_modal("resize"); return false; } var modals = []; function _value(value, base) { if (typeof value == "string" && value.indexOf("%") > 0) { return base * parseInt(value, 10) / 100; } else { return parseInt(value, 10); } } var wd_modal = function(element, options) { this.init(element, options); }; wd_modal.prototype = { init: function(element, options) { var self = this; this.isOpen = false; this.opener = null; this.$element = $(element); this._options = { autoOpen: false, closeExisting: false, closeOnEscape: true, closeOnOverlayClick: true, fadeDuration: null, margin: "10%", padding: 10 }; this.options(options); this.$overlay = $("<div>").addClass("wd_modal-overlay").attr("wd_resize","resizeModal").appendTo($("body")).hide(); this.$outer = $("<div>").addClass("wd_modal-outer").appendTo(this.$overlay); this.$inner = $("<div>").addClass("wd_modal-inner").appendTo(this.$outer).append(this.$element); // Hack because I can't figure out where the extra few pixels at the bottom of the content are coming from this.$inner.css("overflow-y", "hidden"); this.$close = $("<a class=\"wd_modal-close fa fa-times\" href=\"#close\" title=\"Fermer\"><span class=\"wd_sr-only\">Close Dialog<\/span><\/a>") .on("click", function(event) {self.close(); event.preventDefault();}) .appendTo(this.$outer); this.$element.addClass("wd_modal"); if (this._options.autoOpen) this.open(this._options.closeExisting); }, options: function(options) { if (options) { $.extend(this._options, options); this._options.fadeDuration = parseInt(this._options.fadeDuration, 10); if (isNaN(this._options.fadeDuration)) this._options.fadeDuration = false; if (!$.isArray(this._options.margin)) this._options.margin = [this._options.margin]; if (this._options.margin.length < 2) this._options.margin[1] = this._options.margin[0]; if (this._options.margin.length < 3) this._options.margin[2] = this._options.margin[0]; if (this._options.margin.length < 4) this._options.margin[3] = this._options.margin[1]; if (!$.isArray(this._options.padding)) this._options.padding = [this._options.padding]; if (this._options.padding.length < 2) this._options.padding[1] = this._options.padding[0]; if (this._options.padding.length < 3) this._options.padding[2] = this._options.padding[0]; if (this._options.padding.length < 4) this._options.padding[3] = this._options.padding[1]; } else { return this._options; } }, reload: function(options) { if (options) { this.options(options); } this.resize(); }, open: function(closeExisting, now) { if (this.isOpen) return; var self = this; var myCloseExisting = closeExisting; if (!this.opener) this.opener = document.activeElement; if (closeExisting && modals.length > 0) { for (var i = modals.length - 1; i >= 0; --i) modals[i].close(true, true); } this.$overlay.addClass("wd_modal-current"); $("body").append(this.$overlay); if (!now && this._options.fadeDuration) { this.$overlay.fadeIn(this._options.fadeDuration, function() {self.open(myCloseExisting, true);}); } else { if (modals.length == 0) { $("body").css("overflow","hidden"); $(document).on("keydown.wd_modal", function (event) { var current = modals[modals.length - 1]; if ((event.which == 27 || event.keyCode == 27) && current._options.closeOnEscape) { current.close(); event.stopImmediatePropagation(); event.preventDefault(); } }); } if (this._options.closeOnOverlayClick) { this.$overlay.on("click.wd_modal", function (event) { if (event.target == this) { self.close(); event.preventDefault(); } }); } modals.push(this); this.$overlay.show(); var $focus = this.$element.find(":focusable"); if ($focus.length > 0) $focus[0].focus(); this.isOpen = true; this.$element.trigger("open"); } }, close: function(skipCurrent, now) { if (!this.isOpen) return; this.$element.trigger("beforeClose"); // TODO: allow closing of lower modals modals.pop(); if (modals.length == 0) { $("body").css("overflow",""); $(document).off("keydown.wd_modal"); } this.$overlay.off("click.wd_modal"); if (this.opener) { this.opener.focus(); this.opener = null; } this.isOpen = false; this.$overlay.removeClass("wd_modal-current").hide(); if (!skipCurrent && modals.length > 0) modals[modals.length-1].$overlay.addClass("wd_modal-current"); this.$element.trigger("close"); }, destroy: function() { this.close(false, true); $("body").append(this.$element); this.$overlay.remove(); }, resize: function() { if (!this.isOpen) return; var self = this; var winWidth = $(window).width(); var winHeight = $(window).height(); var margin = this._options.margin; var padding = this._options.padding; var width = winWidth - _value(margin[1], winWidth) - _value(margin[3], winWidth) - _value(padding[1], winWidth) - _value(padding[1], winWidth); var height = winHeight - _value(margin[0], winHeight) - _value(margin[2], winHeight) - _value(padding[0], winHeight) - _value(padding[2], winHeight); this.$inner.css("max-width", width); this.$inner.css("max-height", height); $.each(["Top", "Right", "Bottom", "Left"], function(i, v) { self.$outer.css("padding" + v, _value(padding[i])+"px"); }); var fixed = this.$element.find("[wd_need_fixed_container]").is(":visible"); this.$inner.css("width", width); this.$inner.css("height", height); webDriver.doResize(this.$inner); if (!fixed) { this.$inner.css("width", "auto"); this.$inner.css("height", "auto"); if (this.$element.outerHeight() > height) this.$inner.css("height", height); if (this.$element.outerWidth() > width) this.$inner.css("width", width); } } }; $.fn.wd_modal = function(options) { if (options == "exists") { return !!$(this).data("wd_modal"); } else if (typeof options == "string") { var instance = $(this).data("wd_modal"); if (!instance) return null; var args = Array.prototype.slice.call(arguments, 1); return instance[options].apply(instance, args); } else { return this.each(function() { var instance = $(this).data("wd_modal"); if (instance) { instance.reload(options); } else { $(this).data("wd_modal", new wd_modal(this, options)); } }); } }; })(webDriver.jQuery); </script> <script type="text/javascript" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg==">webDriver.pop_jQuery();</script> <script type="text/javascript" wd_script_id="subscribe_featurebox_script" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="> (function($) { webDriver.subscribeClose = function(data) { $(".wd_subscribe_modal").wd_modal("close"); }; webDriver.subscribeSubmit = function(form, id) { var $modal = $(".wd_subscribe_modal"); if ($modal.length == 0) { $modal = $('<div class="wd_subscribe_modal" style="display:none;"></div>'); $modal.wd_modal({ autoOpen: false, }); } var my_form = form; var form_data = $(form).serializeArray(); $modal.html('<div class="wd_loading">Loading...</div>'); $modal.show(); $modal.wd_modal("open", true); $modal.load( "https://presse.roberthalf.ca/alerts?ajax=subscribe&id="+id, form_data, function() { disable_submit(my_form, false); } ); }; })(webDriver.jQuery); </script> <script type="text/javascript" wd_script_id="csrfscript" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="> function fetchCSRFToken() { var currentPageUrl = window.location.href; fetch("verify_token.php", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded" }, body: "page=" + encodeURIComponent(currentPageUrl) }) .then(response => response.text()) .then(token => { PushToken(token,encodeURIComponent(currentPageUrl)) }); } document.addEventListener("DOMContentLoaded", function() { fetchCSRFToken(); }); function PushToken(data){ const parsedData = (() => { try { return JSON.parse(data); } catch { return null; } })(); let token = parsedData ? parsedData.csrf_token : null; let cfid = parsedData ? parsedData.id : null; var elements = document.querySelectorAll(".csrf_token"); elements.forEach(function(element) { element.value = token; let existingHiddenInput = element.nextElementSibling; // Check the immediately following sibling if (cfid && (!existingHiddenInput || !existingHiddenInput.classList.contains("cfid"))) { const hiddenInput = document.createElement("input"); hiddenInput.type = "hidden"; hiddenInput.name = "cfid"; hiddenInput.className = "cfid"; hiddenInput.value = cfid; element.insertAdjacentElement("afterend", hiddenInput); } }); } function set_csrf_loaded() { var csrfElements = document.getElementsByClassName("csrf_token"); var csrfValue = csrfElements[0].value; var token=csrfValue; var tokElements = document.getElementsByClassName("cfid"); var tokValue = tokElements[0].value; var cfid=tokValue; if(token!="" && cfid!="") { let verifytok={csrf_token:token,id:cfid}; const verifyJson = JSON.stringify(verifytok); PushToken(verifyJson) } } </script> <script type="text/javascript" src="js/wd_form.js" wd_script_id="wd_form.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <link href="css/wd_form.css" type="text/css" rel="stylesheet" wd_script_id="wd_form.css"> <style type="text/css" wd_script_id="featureboxes_style" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="> .wd_featurebox_icon { display: inline; } .wd_featurebox_icon img { vertical-align: middle; } div.wd_featurebox_group div.wd_tabs_wrapper { border: none; border-bottom: 1px solid #E1E1E1; padding: 0 0 5px 0; } div.wd_featurebox_group div.wd_featurebox { border: none; padding: 8px 0 0 0; } div.wd_featurebox_group li.wd_tab { float: none; color: #666666; } div.wd_featurebox_group li.wd_tab-active { border: none; background-color: transparent; color: #000000; font-weight: bold; } div.wd_featurebox_group li.wd_tab-inactive { cursor: auto; } </style> <script type="text/javascript" src="js/jquery.js" wd_script_id="jquery.js" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg=="></script> <link href="thirdparty/font-awesome/css/font-awesome.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <style type="text/css" wd_script_id="template teaser_list:newsfeed_releases:site style" nonce="NzIyZjY4ZTMzNDRjMDViOWUxNWQ1MDJjYmM3YWY2NTdiOGEzMzIyYg==">.wd_newsfeed_releases-teaser .wd_date { font-weight: bold; } .wd_newsfeed_releases-teaser .wd_title { font-weight: bold; } .wd_newsfeed_releases-teaser .subscribe_link { margin-bottom: 1em; } .wd_newsfeed_releases-teaser span.wd_subscribe_email-icon { font-size: 1.2em; }</style> <!-- end spin_special_output(head_start) --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Robert Half Canada - Accueil de la salle de nouvelles</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="twitter:card" content="summary" /> <meta property="og:site_name" content="Robert Half Canada" /> <meta property="og:url" content="https://presse.roberthalf.ca/newsroom-home" /> <link rel="icon" type="image/x-icon" href="favicon.png" /> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> <!-- Fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <link href="thirdparty/font-awesome/css/font-awesome.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <link href="thirdparty/font-awesome/css/all.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <script type="text/javascript" src="thirdparty/font-awesome/fa-v4-shims.min.js"></script> <!-- Client Styles --> <link rel="stylesheet" href="css/client_styles.css"> <!-- <link rel="icon" href="favicon.ico" type="image/x-icon" /> --> <!-- MediaRoom Styles --> <link rel="stylesheet" href="css/jquery.fancybox.min.css"> <link rel="stylesheet" href="css/wdmodal.css"> <link rel="stylesheet" href="css/wdcontent.css"> <link rel="alternate" href="https://presse.roberthalf.ca/communiques-de-presse?pagetemplate=rss" type="application/rss+xml" title="Robert Half Canada"> <!-- begin spin_special_output(head_end) --> <link rel="canonical" href="https://presse.roberthalf.ca/" /> <!-- end spin_special_output(head_end) --> </head> <body class="wd_pageid_20303"> <a id="skip-nav" class="sr-only" href="#maincontent">Skip to main content</a> <header class="container-fluid sticky-top px-0"> <nav class="navbar navbar-expand-lg bg-white px-0"> <div class="container"> <a class="navbar-brand" href="https://www.roberthalf.com/ca/fr"><img class="rh_branding-full" src="images/Robert_Half_logo_svg.svg" alt="Robert Half"><img class="rh_branding-monogram" src="images/RH_monogram_svg.svg" alt="Robert Half"></a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav me-auto mb-2 mb-lg-0"> <li class="nav-item"> <a class="nav-link" aria-current="page" href="https://www.roberthalf.com/ca/fr/recherche-emploi">Trouver un emploi</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/ca/fr/recrutement">Embaucher des talents</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/ca/fr/services-conseils">D茅couvrir nos services-conseils</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/ca/fr/perspectives">D茅couvrir les perspectives</a> </li> </ul> <button class="nav-buttons language-toggle" title="toggle language"><a href="#"><i class="fas fa-globe" title="toggle language">&nbsp;</i></a><div class="language-links"><a href="https://press.roberthalf.ca/">EN</a><a href="https://presse.roberthalf.ca/">FR</a></div></button> <button class="nav-buttons search" title="search"><a href="https://www.roberthalf.com/ca/fr/recherche"><i class="fa-regular fa-search" title="search">&nbsp;</i></a></button> <button class="nav-buttons sign-in" title="Se connecter"><a href="https://online.roberthalf.com/s/fr-CA/login">Se connecter</a></button> </div> </div> </nav> </header> <main id="maincontent"> <div class="wd_homepage-title"> <div class="container"> <div class="row"> <div class="col-12"> <h1 class="page_header">Accueil de la salle de nouvelles </h1> </div> </div> </div> </div> <div class="wd_top-highlights"> <div class="container"> <div class="row"> <div class="wd_featureboxes_top_highlights wd_featureboxes-vertical"> <div id="wd_featurebox-teaser_825" class="wd_featurebox_container wd_featurebox-teaser"><div class="wd_featurebox_title">Communiqu茅s de presse</div><div class="wd_featurebox"><p><img src="https://rh-us.mediaroom.com/image/Press_Releases_Image%403x.jpg" /></p> <div class="wd_newsfeed_releases-teaser"> <div class="subscribe_link"><a href="https://presse.roberthalf.ca/alerts"><span class="wd_subscribe_email-icon fa fa-envelope-o"></span></a> <a href="https://presse.roberthalf.ca/alerts">Recevez les derni猫res nouvelles par courriel</a></div> <div class="item"> <div class="wd_title"><a href="https://presse.roberthalf.ca/2025-01-31-Robert-Half-figure-au-palmares-des-entreprises-les-plus-admirees-au-monde-de-Fortune-R-pour-la-28e-annee-consecutive">Robert Half figure au palmar猫s des entreprises les plus admir茅es au monde de Fortune庐 pour la 28e ann茅e cons茅cutive</a></div> <div class="wd_date">31 janvier 2025</div> <div class="wd_summary"><p>Robert Half, cabinet international d'experts-conseils en affaires et en solutions de gestion des talents, y compris sa filiale, Protiviti庐, a 茅t茅 nomm茅e par Fortune庐 comme l'une des...</p></div> </div> <div class="item"> <div class="wd_title"><a href="https://presse.roberthalf.ca/2025-01-30-Une-nouvelle-enquete-indique-que-pres-de-4-travailleurs-sur-10-prevoient-de-changer-demploi-au-premier-semestre-de-2025">Une nouvelle enqu锚te indique que pr猫s de 4 travailleurs sur 10 pr茅voient de changer d'emploi au premier semestre de 2025</a></div> <div class="wd_date">30 janvier 2025</div> <div class="wd_summary"><p>Le rapport r茅v猫le les principaux facteurs qui sous-tendent les projets de recherche d'emploi des travailleurs et expliquent leur satisfaction au travail, ainsi que la fa莽on dont les employeurs...</p></div> </div> <div class="item"> <div class="wd_thumbnail"><a href="https://presse.roberthalf.ca/2024-12-12-Pres-de-la-moitie-des-entreprises-canadiennes-prevoient-ajouter-de-nouveaux-postes-au-cours-du-premier-semestre-de-2025"><img src="https://mma.prnewswire.com/media/2580006/Robert_Half_Canada_Inc__Pr_s_de_la_moiti__des_entreprises_canadi.jpg?p=thumbnail" border="0"/></a></div> <div class="wd_title"><a href="https://presse.roberthalf.ca/2024-12-12-Pres-de-la-moitie-des-entreprises-canadiennes-prevoient-ajouter-de-nouveaux-postes-au-cours-du-premier-semestre-de-2025">Pr猫s de la moiti茅 des entreprises canadiennes pr茅voient ajouter de nouveaux postes au cours du premier semestre de 2025</a></div> <div class="wd_date">12 d茅cembre 2024</div> <div class="wd_summary"><p>46 % pr茅voient ajouter de nouveaux postes permanents ; 49 % embaucheront pour des postes vacants. La croissance de l'entreprise, le roulement du personnel et les demandes li茅es aux projets...</p></div> </div> </div> <p class="more"><a href="https://presse.roberthalf.ca/communiques-de-presse"><span>Afficher tout</span></a></p> </div></div></div> </div> </div> </div> <div class="wd_content"> <div class="container"> <div class="row"> <div class="col-12 col-md-6 col-lg-3 pb-2 wd_left-wrap"> <ul class="navbar-nav flex-column"> <li class="nav-item active"><a class="nav-link " href="https://presse.roberthalf.ca/newsroom-home" target="_self" >Accueil de la salle de nouvelles<span class="sr-only">(current)</span></a></li> <li class="nav-item "><a class="nav-link " href="https://presse.roberthalf.ca/communiques-de-presse" target="_self" >Communiqu茅s de presse</a></li> <li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="https://presse.roberthalf.ca/multimedia" target="_self" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Multim茅dia</a><i class="fa-light fa-angle-right">&nbsp;</i><div class="dropdown-menu wd_subnav" aria-labelledby="navbarDropdown"> <a class="dropdown-item" href="https://presse.roberthalf.ca/infographies" target="_self">Infographies</a> <a class="dropdown-item" href="https://presse.roberthalf.ca/videos" target="_self">Vid茅os</a> </div> </li> <li class="nav-item "><a class="nav-link " href="https://presse.roberthalf.ca/portes-parole" target="_self" >Portes-parole</a></li> <li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="https://www.roberthalf.ca/fr/blog" target="_self" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Le blogue de Robert Half</a><i class="fa-light fa-angle-right">&nbsp;</i><div class="dropdown-menu wd_subnav" aria-labelledby="navbarDropdown"> <a class="dropdown-item" href="https://www.roberthalf.ca/fr/blog/conseils-de-recrutement" target="_self">Conseils de recrutement</a> <a class="dropdown-item" href="https://www.roberthalf.ca/fr/blog/conseils-en-dotation" target="_self">Conseils d鈥檈mbauche</a> <a class="dropdown-item" href="https://www.roberthalf.ca/fr/blog/conseils-pour-trouver-un-emploi" target="_self">Conseils pour trouver un emploi</a> <a class="dropdown-item" href="https://www.roberthalf.ca/fr/blog/developpement-de-carriere" target="_self">D茅veloppement de carri猫re</a> </div> </li> <li class="nav-item "><a class="nav-link " href="https://www.roberthalf.ca/fr/etudes-et-perspectives/recherches-en-milieu-de-travail" target="_self" >Recherches en milieu de travail</a></li> </ul> <div class="wd_featureboxes_left wd_featureboxes-vertical"> <div id="wd_featurebox-subscribe_1" class="wd_featurebox_container wd_featurebox-subscribe"><div class="wd_featurebox_title">Abonnez-vous d猫s maintenant!</div><div class="wd_featurebox"><div class="wd_subscribe_featurebox"><div class="wd_intro"><p>Recevez les derni猫res nouvelles dans votre bo卯te de r茅ception.</p> <p><sub>En inscrivant votre adresse courriel ci-dessous, vous consentez express茅ment 脿 recevoir des courriels relatifs aux activit茅s et derniers communiqu茅s de presse de Robert Half Canada Inc. Vous pouvez retirer votre consentement 脿 tout moment.</sub></p> </div> <form method="POST" class="wd_formbuilder" id="subscribe_form_1" name="formbuilderform" action="https://presse.roberthalf.ca/newsroom-home?submitted=1" enctype="multipart/form-data" onsubmit="disable_submit(this, true);var ok = check_required_fields(this,[&quot;subscribe_1[email]&quot;],[&quot;subscribe_1[email]&quot;],&quot;#ff0000&quot;,&quot;Ce champ est obligatoire&quot;,&quot;Ce champ doit contenir une adresse \u00e9lectronique valide&quot;,&quot;Remplir tous les champs surlign\u00e9s en rouge&quot;,&quot;Fournir une adresse courriel valide&quot;); if (!ok) {disable_submit(this,false); return false;} webDriver.subscribeSubmit(this,1); return false;"> <div class="wd_form_header"> <div class="wd_form_legend"> * Champs requis </div> </div> <div class="wd_form_field wd_form_field_pos_right"> <div class="wd_form_field_label"> <label for="formbuilderform_subscribe_1[email]">*&nbsp;Courriel</label> </div> <div class="wd_form_field_input"> <input type="text" name="subscribe_1[email]" value="" size="16" id="formbuilderform_subscribe_1[email]" /> </div> </div> <div class="wd_form_footer"> <div class="wd_form_buttons"> <input type="submit" class="wd_formbuilder_submit" name="Submit" value="Soumettre"><input type="hidden" name="csrf_token" class="csrf_token" value=""/> </div> </div> </form> </div></div></div><div id="wd_featurebox-standard_3517" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Contactez-nous</div><div class="wd_featurebox"><p><strong>Jillian Levick</strong></p> <p>Gestionnaire Sr. des relations publiques et communications</p> <p><a href="tel:1-647-288-4887">1.647.288.4887</a></p> <p><a href="mailto:jillian.levick@roberthalf.com">Email Jillian Levick</a></p> <p>Robert Half Canada Inc.,<br /> 181 Bay Street, Suite 820,<br /> Toronto, ON<br /> M5J 2T3<br /> <a href="https://www.roberthalf.ca/fr">www.roberthalf.ca/fr</a></p> </div></div></div> </div> <div class="col-12 col-md-6 col-lg-9 pb-2"> <div class="row"> <div id="wd_printable_content"> <div class="wd_standard"> </div> </div> </div> <div class="row wd_featurebox_div_header"> 脡tudes et perspectives </div> <div class="row"> <div class="wd_featureboxes_insights wd_featureboxes-vertical"> <div id="wd_featurebox-standard_3514" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Guide salarial</div><div class="wd_featurebox"><table width="846" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Salary_Guide_Image%403x.png" border="0" alt="Guide salarial icon" title="Guide salarial icon" /></td></tr></table> <p>Acc&eacute;dez aux derni&egrave;res &eacute;chelles salariales et tendances en mati&egrave;re d&#39;emploi pour des centaines de postes.</p> <p><a href="https://www.roberthalf.ca/fr/guide-salarial">Voir plus</a></p> </div></div><div id="wd_featurebox-standard_3515" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Blogue</div><div class="wd_featurebox"><table width="846" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Blog_Image%403x.png" border="0" alt="Blogue icon" title="Blogue icon" /></td></tr></table> <p>Obtenez des conseils et des connaissances pour embaucher des travailleurs engag&eacute;s et productifs ou pour obtenir un emploi stimulant et &eacute;panouissant.</p> <p><a href="https://www.roberthalf.com/ca/fr/perspectives">Voir plus</a></p> </div></div><div id="wd_featurebox-standard_3516" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">La demande de personnel qualifi茅</div><div class="wd_featurebox"><table width="290" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/dfst22-promo-thumbnail-0722-ca-fr-650x650.jpg" border="0" alt="Icon la demande de personnel qualifi茅" title="Icon la demande de personnel qualifi茅" /></td></tr></table> <p>Examinez les tendances d&#39;embauche, la fa&ccedil;on dont les entreprises s&#39;adaptent et ce que les candidats &agrave; l&#39;emploi veulent le plus des employeurs.</p> <p><a href="https://www.roberthalf.ca/fr/tendances-en-matiere-demploi-la-demande-de-personnel-qualifie">Voir plus</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle wd_featureboxes-horizontal"> <div id="wd_featurebox-standard_3520" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Multim茅dia</div><div class="wd_featurebox"><table width="846" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Multimedia_image%403x.jpg" border="0" alt="Multim茅dia icon" title="Multim茅dia icon" /></td></tr></table> <p>T&eacute;l&eacute;chargez nos derni&egrave;res infographies et notre logo pour les nouvelles et l&#39;usage &eacute;ditorial.</p> <p class="wd_button"><a href="multimedia">Voir plus</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle_profile wd_featureboxes-vertical"> <div id="wd_featurebox-standard_3521" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Portes-parole</div><div class="wd_featurebox"><table width="178" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/David+King-+Headshot-+2023+178x178+%28rnd%29.png" border="0" alt="David King headshot" title="David King headshot" /></td></tr></table> <p class="wd_execprofile_name">David King</p> <p class="wd_execprofile_title">Premier directeur g&eacute;n&eacute;ral</p> <p>David King est premier directeur g&eacute;n&eacute;ral chez Robert Half, la premi&egrave;re et la plus grande entreprise de solutions de gestion des talents sp&eacute;cialis&eacute;es au monde. Dans le cadre de ses fonctions actuelles, il supervise les activit&eacute;s de Robert Half au Canada et en Am&eacute;rique du Sud.</p> <p class="wd_button"><a href="portes-parole">Voir plus</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle_left wd_featureboxes-vertical"> <div id="wd_featurebox-teaser_1378" class="wd_featurebox_container wd_featurebox-teaser"><div class="wd_featurebox_title">Dans l'actualit茅</div><div class="wd_featurebox"> <div class="wd_news_headlines-teaser"> <div class="item"><div class="item_date">17 avril 2023</div><div class="item_name"><a href="https://courrierlaval.com/5-tendances-marche-emploi-pour-futurs-diplomes/" target="_blank">5 tendances du march茅 de l鈥檈mploi pour les futurs dipl么m茅s</a></div><div class="item_summary"><div class="item_publication">Courrier Laval</div></div></div> <div class="item"><div class="item_date">12 avril 2023</div><div class="item_name"><a href="https://www.lesaffaires.com/dossier/recrutement-nouveaux-gestionnaires-a-l-horizon/lere-du-gestionnaire-20/640314" target="_blank">L'猫re du gestionnaire 2.0</a></div><div class="item_summary"><div class="item_publication">Les Affaires</div></div></div> <div class="item"><div class="item_date">11 avril 2023</div><div class="item_name"><a href="https://www.lesaffaires.com/mes-finances/planification/mieux-vaut-avoir-un-plan-avant-de-quitter-son-emploi-disent-des-experts/640364" target="_blank">Mieux vaut avoir un plan avant de quitter son emploi, disent des experts</a></div><div class="item_summary"><div class="item_publication">Les Affaires</div></div></div> <div class="item"><div class="item_date"> 4 janvier 2023</div><div class="item_name"><a href="https://www.lapresse.ca/affaires/2023-01-04/un-travailleur-sur-deux-en-recherche-d-emploi.php" target="_blank">Un travailleur sur deux en recherche d鈥檈mploi ?</a></div><div class="item_summary"><div class="item_publication">La Presse</div></div></div> </div> </div></div></div> </div> </div> </div> </div> </div> </main> <footer class="container-fluid px-0"> <div class="upper-footer"> <div class="container"> <div class="row"> <div class="col-12 col-md-6 col-lg-3"> <h2>Services</h2> <ul> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/emplois">Parcourir les emplois</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/recrutement/placement-temporaire">Placement temporaire</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/recrutement/placement-permanent">Placement permanent</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/services-conseils">Services-conseils</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>Domaines d鈥檈xpertise</h2> <ul> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/comptabilite-finance">Finance et comptabilit茅</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/technologies-ti">Technologies</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/marketing-creation">Marketing et cr茅ation</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/soutien-administratif">Soutien administratif et 脿 la client猫le</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/juridique">Juridique</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>Ressources et outils</h2> <ul> <li><a href="https://www.roberthalf.com/ca/fr/perspectives">D茅couvrir les perspectives</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/details-emploi-tous">R茅pertoire d鈥檈mplois</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/perspectives/guide-salarial">Guide salarial</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/connexion">Rapports de temps</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/contact">Contactez-nous</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>脌 propos</h2> <ul> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/a-propos/a-propos-de-robert-half">脌 propos de Robert Half</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/a-propos/direction">Direction</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/joignez-robert-half">Carri猫res chez nous</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/nos-bureaux">Nos bureaux</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/us/en/about/investor-center">Centre des investisseurs</a></li> <li><a href="https://presse.roberthalf.ca/">Presse</a></li> <li><a href="https://www.roberthalf.com/content/roberthalf/ca/fr/a-propos/notre-entreprise/marques">Nos marques</a></li> </ul> </div> </div> </div> </div> <div class="lower-footer"> <div class="container"> <div class="row"> <div class="col-12"> <!-- <a href="https://www.roberthalf.com/ca/fr"><img class="footer-logo" src="images/RH_Squircle_160_svg.svg" alt="Robert Half Logo"></a> --> </div> <div class="col-12 social-media-links"> <ul> <li><a href="https://www.facebook.com/pages/Robert-Half/182444181913924"><i class="fa-brands fa-facebook" title="Facebook">&nbsp;</i></a></li> <li><a href="https://www.linkedin.com/company/robert-half-international"><i class="fa-brands fa-linkedin" title="LinkedIn">&nbsp;</i></a></li> <li><a href="https://twitter.com/RobertHalf_CAFR"><i class="fa-brands fa-twitter" title="Twitter">&nbsp;</i></a></li> <li><a href="https://www.youtube.com/@RobertHalfCanadaFR"><i class="fa-brands fa-youtube" title="YouTube">&nbsp;</i></a></li> <li><a href="https://www.instagram.com/roberthalf/"><i class="fa-brands fa-instagram" title="Instagram">&nbsp;</i></a></li> </ul> </div> <div class="col-12 col-lg-7 col-xl-9 legal-links"> <ul> <li><a href="https://www.roberthalf.com/ca/fr/alerte-fraude">Alerte 脿 la fraude</a></li> <!-- <li><a href="https://www.roberthalf.com/us/en/government-notice">Government Notice</a></li> --> <li><a href="https://www.roberthalf.com/ca/fr/confidentialite">Politique de confidentialit茅</a></li> <li><a href="https://www.roberthalf.com/ca/fr/conditions">Conditions d鈥檜tilisation</a></li> </ul> </div> <div class="col-12 col-lg-7 col-xl-9 contact-info"> <p>漏 2025 Robert Half Canada Inc. Tous droits r茅serv茅s <!-- <br> <a href="https://www.roberthalf.com/us/en/equal-opportunity-employer">An Equal Opportunity Employer</a> --> <!-- <br> <a href="https://www.roberthalf.com/us/en/equal-opportunity-employer">M/F/Disability/Veterans</a></p> --> <p>Num茅ro de permis du Qu茅bec AP-2000503</p> </div> </div> </div> </div> </footer> <button class="back-to-top" title="Back to Top"><i class="fa-regular fa-chevron-up">&nbsp;</i><span>Top</span></button> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js" integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa" crossorigin="anonymous"></script> <!-- MediaRoom Scripts --> <script src="js/jquery.min.js"></script> <script src="js/jquery.fancybox.min.js"></script> <script src="js/wdscripts.js"></script> <!-- Newsfeed Release Detail Toolbar --> <!-- PR Contacts --> <script type="text/javascript"> $(function($) { $(document).ready(function() { // Media License Agreement jQuery('.wd_downloadprompt').click(function(e) { e.preventDefault(); var iframe_url = 'https://presse.roberthalf.ca/index.php?s=20320'; if(iframe_url.indexOf('?') > 0) { iframe_url += '&pagetemplate=iframe_modal'; } else { iframe_url += '?pagetemplate=iframe_modal'; } var download_url = $(this).attr('href'); iframe_url += '&data=' + download_url; jQuery.fancybox.open({ src : iframe_url, type: 'iframe', toolbar : false, smallBtn : true, iframe : { css : { width : '900px' } } }) }); }); }); </script> <script> var assetDocumentLink = jQuery('.wd_pageid_34137 .wd_assets_container .wd_assets:first-child .wd_documents-detail .detail_header a').attr('href'); var assetDocumentLinkText = jQuery('.wd_pageid_34137 .wd_assets_container .wd_documents-detail .detail_header a').text(); if(assetDocumentLink) { jQuery('.wd_stories-detail > div.wd_title').append('<span class="wd_title_download_link"><a href="'+assetDocumentLink+'">'+assetDocumentLinkText+'<i class="fa fa-arrow-down"></i></a></span>'); jQuery('.wd_pageid_34137 .wd_assets_container').css('display', 'none'); } // jQuery(document).ready(function() { // setTimeout(() => { // jQuery(".wd_pageid_20290 .wd_featureboxes_middle .wd_featurebox .wd_featurebox_image").html('<a href="audio" target="_self"><img src="/rh-us/image/Default_Audio.jpg" border="0" alt="" title=""></a>'); // }, 200); // }); // Video download text var videoDownloadText = $('.wd_videos .wd_item_list .wd_item .wd_video_link_list_wrapper'); jQuery('.wd_videos .wd_item_list .wd_item').each(function(ind) { $(this).prepend(videoDownloadText[ind]); }); jQuery('.wd_videos .wd_item_list .wd_item .wd_video_link_list_wrapper li a').append('<i class="fa fa-arrow-down"></i>'); jQuery('.wd_videos-detail .wd_video_link_list_wrapper li a').append('<i class="fa fa-arrow-down"></i>'); </script> <!-- begin spin_special_output(body_end) --> <script wd_script_id="piwik_tracking_code"></script> <!-- Piwik Tracking Code --> <script type="text/javascript"> var _paq = _paq || []; _paq.push(["setCustomVariable", 1, "Content Type", "Standard", "page"]); _paq.push(["setCustomVariable", 3, "Navigation Page", "Accueil de la salle de nouvelles", "page"]); _paq.push(["trackPageView"]); _paq.push(["enableLinkTracking"]); (function() { var u="//stats.drivetheweb.com/"; _paq.push(["setTrackerUrl", u+"piwik.php"]); _paq.push(["setSiteId", 6739]); var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript"; g.async=true; g.defer=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s); })(); </script> <noscript> <img src="https://stats.drivetheweb.com/piwik.php?idsite=6739&rec=1" style="border:0" alt="" /> </noscript> <!-- End Piwik Tracking Code --> <!-- end spin_special_output(body_end) --> <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:'913abd04c8964097',t:'MTczOTg0NzMyOS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';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></body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10