19 lines
382 B
PHP
19 lines
382 B
PHP
<!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>
|
|
</head>
|
|
<body>
|
|
|
|
<?php include "header.html"?>
|
|
|
|
<div id="main-body">
|
|
<div id="sidebar"></div>
|
|
<div id="content"></div>
|
|
</div>
|
|
|
|
<?php include "footer.html"?>
|
|
</body>
|
|
</html>
|