You can embed both Hirevire job posts as well the Hirevire careers page within your website using the following code
<iframe
width="100%"
height="100%"
frameborder="0"
scrolling="yes"
allowTransparency="true"
allow="camera;microphone;display-capture;"
src="URL here">
</iframe>
Replace the URL here
portion next to src
with the Hirevire job post or career page link
Proper sizing for iframe embedding
To ensure your embedded content displays correctly with proper sizing, use a container div that takes up the full viewport height and width. This approach creates a responsive embed that fills the available space.
<div style="height:100vh; width:100vw;">
<iframe
width="100%"
height="100%"
frameborder="0"
scrolling="yes"
allowtransparency="true"
allow="camera;microphone;display-capture;"
src="URL here">
</iframe>
</div>
This code creates a container div that uses viewport units (100vh for height, 100vw for width) to fill the entire screen. The iframe inside is set to 100% width and height, making it fill its container completely.
Remember to replace the src
attribute value with your actual Hirevire URL.