123456789101112131415161718 |
- <?php
- function paHeader($title = '')
- {
- print('<html>
- <head>
- <meta charset="utf-8">
- <title>' . $title . '</title>
- <link rel="stylesheet" href="milligram.min.css">
- </head>
- <body>');
- }
- function paFooter()
- {
- print('</body>
- </html>');
- }
|