1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Accueil FAQ</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style/stylefaq.css">
<script language="JavaScript">
function afficher(id) {
var total = 6;
for (var i=0;i<=total;i++){
if (i==id){
document.getElementById("q"+i).style.color="#e36811";
document.getElementById("r"+i).style.display="block";
}
else{
document.getElementById("q"+i).style.color="black";
document.getElementById("r"+i).style.display="none";
}
}
}
</script>
</head>
<body class="faq">
<img src="style/img/bandeau_haut.gif" width="100%"><hr>
<div style="text-align: center;">
<a class="type1" href="http://www.test.fr">Retour HomePage Editeur</a>
<br><br>
</div>
<fieldset id="fieldset_faq" class="pave">
<legend align="top" id="legend"> FAQ </legend>
<div id="container">
<form method="post">
<div id="cntbox">
<span id="q0"></span>
<div class="gen" id="questions">
<ul class="themes">
<li class="theme"> Changement d'adresse</li>
<li>
<ul class="questions">
<li>
<a id="q1" class="type2" href="javascript:afficher(1)">Question</a>
</li>
<li>
<a id="q2" class="type2" href="javascript:afficher(2)">Question</a>
</li>
<li>
<a id="q3" class="type2" href="javascript:afficher(3)">Question</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</form>
</div>
<div id="reponses">
<div id="r0" class="accueil">
<h4>Les questions le plus souvent posées</h4>
<p class="reponse">
ReponseReponseReponseReponseReponseReponseReponseReponseReponseReponse
</p>
</div>
<div id="r1" class="hidden">
<h4>Question</h4>
<p class="reponse">
ReponseReponseReponseReponseReponseReponseReponseReponseReponseReponse
</p>
<div class="edit">
<div class="bouton">
<a href="demfra.html" class="type3">Posez votre question</a>
</div>
</div>
</div>
<div id="r2" class="hidden">
<h4>Question</h4>
<p class="reponse">
Reponse Reponse Reponse ReponseReponseReponseReponseReponseReponse
</p>
<div class="edit">
<div class="bouton">
<a href="demetr.html" class="type3">Posez votre question</a>
</div>
</div>
</div>
<div id="r3" class="hidden">
<h4>Question</h4>
<p class="reponse">
ReponseReponseReponseReponseReponseReponseReponseReponseReponseReponse
</p>
<div class="edit">
<div class="bouton">
<a href="vaca.html" class="type3">Posez votre question</a>
</div>
</div>
</div>
</div>
</fieldset>
<hr><br><br>
<p class="pied">
Mentions légales
</p>
</body>
</html> |