17 lines
322 B
PHP
17 lines
322 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Le site de tous les bernards !</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" href="css/style.css"/>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include 'includes/head.php';
|
|
?>
|
|
|
|
<?php
|
|
include 'includes/foot.php'
|
|
?>
|
|
</body>
|
|
</html>
|