basicNecessity

This commit is contained in:
2026-03-13 10:54:13 +01:00
parent fedbf51c91
commit 155a4dde42
3 changed files with 27 additions and 0 deletions

4
footer.html Normal file
View File

@@ -0,0 +1,4 @@
<footer>
<div id="src"></div>
<div id="Contact"></div>
</footer>

4
header.html Normal file
View File

@@ -0,0 +1,4 @@
<header>
<div id="logo"></div>
<nav></nav>
</header>

19
index.php Normal file
View File

@@ -0,0 +1,19 @@
<!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>