54 lines
2.0 KiB
HTML
54 lines
2.0 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="refresh" content="1200;URL=https://camilou.fr/index.html">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Données</title>
|
|
<link rel="stylesheet" href="../CSS.css">
|
|
<link rel="icon" href="../favicon.ico" type="image/x-icon">
|
|
|
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
|
|
|
<style>
|
|
*{font-family:Georgia, 'Times New Roman', Times, serif}
|
|
body {background-image: linear-gradient(to bottom,#bc31f8, #f970db,#6bb0f5, #36eeae ); /* Dégradé du haut vers le bas */
|
|
background-attachment: fixed; /* Fond d'écran statique */}
|
|
body{background-image: url(../futurist.png);background-size: cover; background-position: center}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<h1>Données du formulaire de la page d'accueil</h1>
|
|
<br><br>
|
|
|
|
<div id="content" style="background-color: #fff8eb; margin:5% ; padding:10px"></div>
|
|
<script>
|
|
// Chemin vers le fichier texte
|
|
var filePath = '../donnees.txt';
|
|
|
|
// Utilisation de l'objet XMLHttpRequest pour récupérer le contenu du fichier
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.onreadystatechange = function() {
|
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
if (xhr.status === 200) {
|
|
// Afficher le contenu du fichier dans la balise <div>
|
|
document.getElementById('content').innerText = xhr.responseText;
|
|
} else {
|
|
console.error('Impossible de charger le fichier.');
|
|
}
|
|
}
|
|
};
|
|
xhr.open('GET', filePath, true);
|
|
xhr.send();
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<p><br><br><br></p>
|
|
</body>
|
|
</html>
|