game/header.php

30 lines
1.2 KiB
PHP

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php
if (defined('TITLE')) echo TITLE;
else print 'Halo Battle';
?></title>
<meta http-equiv="Content-Language" content="fr">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Description" lang="fr" content="Jeu en php de simulation de guerre spatiale">
<meta name="Abstract" content="Jeu en php de simulation de guerre spatiale">
<meta name="Category" content="Jeu php">
<meta name="Date-Creation-yyyymmdd" content="20070621">
<meta name="Author" content="Halo Battle">
<meta name="Distribution" content="Global">
<meta name="Rating" content="General">
<meta name="Robots" content="noindex, follow">
<meta name="Revisit-After" content="10 days">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<?php
if (defined('DESIGN')) echo '<link rel="stylesheet" media="screen" type="text/css" href="'.DESIGN.'">';
?>
<?php
if (defined('HEAD')) echo HEAD;
?>
</head>