Skip to main content

iframe

An <iframe> loading a nested asset document.

Browse this template in the repository →

The PDFs below are rendered live by PDF Server from the shipped examples.

default

Your browser can’t display this PDF inline — use the download link below.

Download PDF — iframe / default

Inputs

Render data

default

{}

Template

template.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<h1>Template with iframe</h1>
<iframe src="assets/embedded.html"></iframe>
</body>
</html>

Assets

assets/embedded.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
I am embedded in an iframe.
</body>
</html>