Files
citrus-cms/app/Functions/pdf_html_content2.php
T
2026-04-28 21:14:25 +03:00

22 lines
351 B
PHP

<?php function pdf_html_content2($html) {
$start = '<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body{
font-family: DejaVu Sans;
}
</style>
</head>
<body>';
$end = "</body>
</html>";
return $start . $html . $end;
} ?>