25 lines
636 B
PHP
25 lines
636 B
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
<head>
|
|
<title>Titre</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" href="simple.css" />
|
|
</head>
|
|
<body>
|
|
<div class="menu">
|
|
<?php include("menu.html"); ?>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Le projet</h2>
|
|
<p> Le projet...</p>
|
|
<h2>La beta</h2>
|
|
<p> La version beta de PtiClic...</h2>
|
|
</div>
|
|
<div class="footer">
|
|
<?php include("footer.html"); ?>
|
|
</div>
|
|
</body>
|
|
</html>
|