1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| <?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Date de création: 13/10/2007 -->
<head>
<link rel="stylesheet" type="text/css" href="disposition.css" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Disposition</title>
</head>
<body>
<div id ="title">
<p><span class="initcap">L'</span>émotion</p>
</div>
<div id ="menu">
<p>MENU
<ul>
<li><a href="?page=premier"> page 1</a></li>
<li><a href="?page=deuxieme"> page 2</a></li>
</ul>
</p>
</div>
<div id ="main">
<p>
<?php
if(!isset($page)) include("premier.html");
else include($page.".html");
?>
</p>
<div id ="footer">
<p>FOOTER</p>
</div>
</body>
</html> |