21 lines
331 B
PHP
21 lines
331 B
PHP
|
<?php
|
||
|
|
||
|
function returnHeader() {
|
||
|
?>
|
||
|
<!Doctype html>
|
||
|
<html lang="de">
|
||
|
<head>
|
||
|
<title>Alumni Max Emden</title>
|
||
|
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<?php
|
||
|
}
|
||
|
|
||
|
function returnFooter() {
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|
||
|
<?php
|
||
|
}
|