HTML Kopf und Fuss

mit optionalen Parametern

function HTML_Kopf($titel='Titel', $farbe='ffffff'){
	print("<html><head>
		<title>$titel</title>
		</head>
		<body bgcolor='#$farbe'>");
}
function HTML_Fuss(){
	print("</body>
		</html>");
}
HTML_Kopf('Testseite','ccFFcc');
print("Bodytext");
HTML_Fuss();
?>