3d-interface/include/header_functions.php

11 lines
227 B
PHP
Raw Normal View History

2015-04-09 11:20:50 +02:00
<?php
function head($title = "Title")
{
echo "\n\t<head>\n";
echo "\t\t<title>The begining - " . $title . "</title>\n";
echo "\t\t<meta charset='utf-8'>\n";
echo "\t</head>\n\n";
}