To embed your custom job site on your website, you will need to make use of HTML iframes. Iframes are a method for displaying an external website within a web page.
To use iframes to embed your official careers site into your company’s website, navigate to the Administration – Company Page and select Jobs Page on the top menu.
Here you can set your URL for your site:
Once you have this set, you can copy the URL and include it on your web page by pasting the following into the HTML code of your site, changing the src attribute to be your custom URL.
<iframe src="https://myurl.mysite.com" title="My careers page"></iframe>
If you are using a Content Management System (CMS), you will need to post this into the HTML code window in your editor.
You may customize the look and feel of the iframe using a number of HTML and CSS tricks. For instance to set the height and width of the iframe, you can use parameters like below:
<iframe src="https://myurl.mysite.com" height="600" width="500" title="My careers page"></iframe>
If you wish to have no border around your iframe so that it blends more smoothly with your page, you can set the style of the border using CSS:
<iframe src="https://myurl.mysite.com" style="border:none;" title=" My careers page "></iframe>
If you are looking for more methods of customizing your iframes, please check this guide on the inline frame element.