scraftia-web/libs/header.php
2025-02-08 00:52:59 -05:00

19 lines
383 B
PHP

<?php
function page_header()
{
?>
<!DOCTYPE html>
<html>
<head>
<title>Scraftia</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<?php }
function page_footer()
{ ?>
<script src='/map.js'></script>
</body>
</html>
<?php } ?>