1. Download Course Brochure
2. Course Registration
3. Group Request
4. Tailor this course
5. Ask a question
Notes:
- Height: Adjust
height="900" depending on how long the form is. We can increase if the form scrolls vertically.
- Responsive: For fully responsive embedding, wrap it in a container with CSS:
<div class="iframe-container">
<iframe src="https://app.pideyalearningacademy.com/enquiry/registration?code=OGT002"></iframe>
</div>
.iframe-container {
position: relative;
width: 100%;
padding-bottom: 120%; /* adjust for form length */
height: 0;
overflow: hidden;
}
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}