21 lines
405 B
PHP
21 lines
405 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>
|
||
|
|
<link rel="stylesheet" href="main.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<?php include "header.php"?>
|
||
|
|
|
||
|
|
<div class="main-body">
|
||
|
|
<form>
|
||
|
|
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?php include "footer.php"?>
|
||
|
|
</body>
|
||
|
|
</html>
|