23 lines
650 B
PHP
23 lines
650 B
PHP
|
<?php
|
||
|
$root = $_SERVER['DOCUMENT_ROOT'];
|
||
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Contact | Les Cocottes Minutes</title>
|
||
|
<link rel="stylesheet" href="/styles/style.css">
|
||
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include("$root/menu.php");?>
|
||
|
<?php include("$root/header.php");?>
|
||
|
<section>
|
||
|
|
||
|
</section>
|
||
|
<?php include("$root/footer.php");?>
|
||
|
<script src="/scripts/script.js"></script>
|
||
|
</body>
|
||
|
</html>
|