File: //home/globfdxw/www/wp-content/plugins/wpforms-pdf/templates/pdf/html.php
<?php
/**
* WPForms PDF: Page HTML template.
*
* @since 1.0.0
*
* @var string $fonts_css CSS content for fonts.
* @var string $html_css CSS content.
* @var string $pdf_tuning_css CSS content for tuning PDF output.
* @var string $body Body content.
* @var string $body_class Body CSS class.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped, WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet
?>
<!DOCTYPE html>
<html>
<head>
<title>PDF</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style id="html-css">
<?php echo $fonts_css; ?>
<?php echo $html_css; ?>
</style>
<style id="pdf-tuning-css">
<?php echo $pdf_tuning_css; ?>
</style>
</head>
<body class="<?php echo $body_class; ?>">
<?php echo $body; ?>
</body>
</html>