3d-interface/include/header_functions.php

13 lines
426 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";
2015-04-11 17:08:43 +02:00
echo "\t\t<meta charset='utf-8' />\n";
echo "\t\t<link rel=\"stylesheet\" href=\"http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic\" />\n";
echo "\t\t<link rel=\"stylesheet\" href=\"/css/style.css\" />\n";
2015-04-09 11:20:50 +02:00
echo "\t</head>\n\n";
}