Initial creation of index.html with basic HTML structure and test content.

This commit is contained in:
Rassaby Ludovic
2025-10-13 10:46:47 +04:00
commit 9239207a59
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page de Test</title>
</head>
<body>
<h1>Page de Test</h1>
<div id="test-element">
<p>Ceci est un élément de test</p>
</div>
</body>
</html>