Files
LesRecettesDePapis/index.php

22 lines
490 B
PHP
Raw Normal View History

2026-03-13 10:54:13 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Statique</title>
2026-03-13 11:03:09 +01:00
<link rel="stylesheet" href="main.css">
2026-03-13 10:54:13 +01:00
</head>
<body>
<?php include "header.html"?>
<div id="main-body">
2026-03-13 11:03:09 +01:00
<div id="sidebar"> une sidebar</div>
<div id="content">
<?php include "recette.html"?>
</div>
2026-03-13 10:54:13 +01:00
</div>
<?php include "footer.html"?>
</body>
</html>